yavsc/YavscLib/Identity/IApplicationUser.cs

10 lines
228 B
C#

namespace YavscLib
{
public interface IApplicationUser
{
IAccountBalance AccountBalance { get; set; }
string DedicatedGoogleCalendar { get; set; }
ILocation PostalAddress { get; set; }
}
}