wip - refacts

This commit is contained in:
Paul Schneider 2017-03-13 16:44:07 +01:00
commit 736e46e800
68 changed files with 577 additions and 9832 deletions

View file

@ -1,15 +1,9 @@
using System.Collections.Generic;
namespace YavscLib
namespace YavscLib
{
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; }
}
}

View file

@ -1,13 +0,0 @@
using System.Collections.Generic;
namespace YavscLib
{
public interface ICircle
{
long Id { get; set; }
IList<ICircleMember> Members { get; set; }
string Name { get; set; }
IApplicationUser Owner { get; set; }
string OwnerId { get; set; }
}
}

View file

@ -1,9 +0,0 @@
namespace YavscLib
{
public interface ICircleMember
{
ICircle Circle { get; set; }
long Id { get; set; }
IApplicationUser Member { get; set; }
}
}