Files
yavsc/YavscLib/Identity/IApplicationUser.cs
2017-03-02 20:25:49 +01:00

16 lines
459 B
C#

using System.Collections.Generic;
namespace YavscLib
{
public interface IApplicationUser
{
IAccountBalance AccountBalance { get; set; }
IList<IContact> Book { get; set; }
IList<ICircle> Circles { get; set; }
string DedicatedGoogleCalendar { get; set; }
IList<IGoogleCloudMobileDeclaration> Devices { get; set; }
ILocation PostalAddress { get; set; }
IList<IBlog> Posts { get; set; }
}
}