using System.Collections.Generic; namespace YavscLib { public interface IApplicationUser { IAccountBalance AccountBalance { get; set; } IList Book { get; set; } IList Circles { get; set; } string DedicatedGoogleCalendar { get; set; } IList Devices { get; set; } ILocation PostalAddress { get; set; } IList Posts { get; set; } } }