namespace zero.Core.Entities { public interface IAppAwareEntity { /// /// Id of the associated application (auto-filled) /// string AppId { get; set; } } public interface IAppAwareShareableEntity : IAppAwareEntity { } }