Files
yavsc/YavscLib/Identity/IApplicationUser.cs
2017-03-13 16:44:07 +01:00

10 lines
228 B
C#

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