2017-03-13 16:44:07 +01:00
|
|
|
|
namespace YavscLib
|
2016-07-20 13:52:38 +02:00
|
|
|
|
{
|
|
|
|
|
|
public interface IApplicationUser
|
|
|
|
|
|
{
|
|
|
|
|
|
IAccountBalance AccountBalance { get; set; }
|
|
|
|
|
|
string DedicatedGoogleCalendar { get; set; }
|
|
|
|
|
|
ILocation PostalAddress { get; set; }
|
|
|
|
|
|
}
|
2017-02-07 15:04:58 +01:00
|
|
|
|
}
|