Files
mixtape/zero.Core/Entities/Features/Feature.cs
T
2021-05-04 17:23:52 +02:00

24 lines
477 B
C#

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