namespace zero.Core.Entities { /// /// A feature can affect both the backoffice and the frontend /// public class Feature { /// /// The alias /// public string Alias { get; set; } /// /// The name of the feature /// public string Name { get; set; } /// /// Additional description /// public string Description { get; set; } } }