using PhoneToolMX.Models.ViewModels; namespace PhoneToolMX.Models { public interface IOwnedModel : IModel { public ICollection Owners { get; set; } public bool IsOwnedBy(User user); } }