This commit is contained in:
Paul Schneider 2016-11-28 15:19:59 +01:00
commit 528e4ac947
19 changed files with 0 additions and 6 deletions

View file

@ -1,16 +0,0 @@
using System.Collections.Generic;
using Yavsc.Models.Identity;
namespace Yavsc.Models
{
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; }
}
}