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