namespace zero.Api.Models; public abstract class SaveModel : ZeroIdEntity where T : ZeroEntity { /// /// Full name of the entity /// public string Name { get; set; } /// /// Alias (non-unique) which can be used in the frontend and URLs /// public string Alias { get; set; } /// /// A key which can be used to query this entity in code /// public string Key { get; set; } /// /// Sort order /// public uint Sort { get; set; } /// /// Whether the entity is visible in the frontend /// public bool IsActive { get; set; } }