Files
mixtape/zero.Core/Configuration/Features/Feature.cs
T
2021-11-24 15:49:25 +01:00

22 lines
438 B
C#

namespace zero.Configuration;
/// <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; }
}