yavsc/Yavsc/Interfaces/IApplicationUser.cs

15 lines
467 B
C#
Raw Normal View History

2016-07-27 10:55:44 +02:00
using System.Collections.Generic;
namespace Yavsc.Interfaces
2016-07-27 10:55:44 +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; }
}
}