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