yavsc/YavscLib/Identity/IApplicationUser.cs

10 lines
228 B
C#

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