yavsc/YavscLib/IApplicationUser.cs

15 lines
459 B
C#
Raw Normal View History

2016-07-20 13:52:38 +02:00
using System.Collections.Generic;
2017-02-07 15:04:58 +01:00
namespace YavscLib
2016-07-20 13:52:38 +02:00
{
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; }
}
2017-02-07 15:04:58 +01:00
}