2020-05-05 13:13:19 +02:00
|
|
|
namespace zero.Core.Entities
|
|
|
|
|
{
|
2021-05-04 17:23:52 +02:00
|
|
|
/// <summary>
|
|
|
|
|
/// A feature can affect both the backoffice and the frontend
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class Feature
|
2020-05-05 13:13:19 +02:00
|
|
|
{
|
2021-05-04 17:23:52 +02:00
|
|
|
/// <summary>
|
|
|
|
|
/// The alias
|
|
|
|
|
/// </summary>
|
2020-05-05 13:13:19 +02:00
|
|
|
public string Alias { get; set; }
|
|
|
|
|
|
2021-05-04 17:23:52 +02:00
|
|
|
/// <summary>
|
|
|
|
|
/// The name of the feature
|
|
|
|
|
/// </summary>
|
2020-05-05 13:13:19 +02:00
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
2021-05-04 17:23:52 +02:00
|
|
|
/// <summary>
|
|
|
|
|
/// Additional description
|
|
|
|
|
/// </summary>
|
2020-05-05 13:13:19 +02:00
|
|
|
public string Description { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|