Files
yavsc/Yavsc/Interfaces/IApplicationUser.cs
Paul Schneider b7ac60b2a8 refabrique:
* Nouvel espace de noms: Yavsc.Interfaces
* Nouvelle interface : ILifeTime
* Factorisation
2016-07-29 13:37:46 +02:00

16 lines
467 B
C#

using System.Collections.Generic;
namespace Yavsc.Interfaces
{
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; }
}
}