Files
mixtape/zero.Core/Entities/Modules/Module.cs
T

24 lines
593 B
C#
Raw Normal View History

2021-05-04 17:23:52 +02:00
namespace zero.Core.Entities
2020-08-17 16:10:02 +02:00
{
/// <summary>
/// A module can consist of unlimited properties and be rendered as you wish
/// The backoffice rendering is done by an IRenderer
/// </summary>
2021-05-04 17:23:52 +02:00
public class Module : ZeroIdEntity
2020-08-17 16:10:02 +02:00
{
/// <summary>
/// Sort order
/// </summary>
2021-05-04 17:23:52 +02:00
public uint Sort { get; set; }
2020-08-17 16:10:02 +02:00
/// <summary>
/// Whether the module is visible in the frontend
/// </summary>
2021-05-04 17:23:52 +02:00
public bool IsActive { get; set; }
2020-08-17 16:10:02 +02:00
/// <summary>
/// Alias of the used module type
/// </summary>
2021-05-04 17:23:52 +02:00
public string ModuleTypeAlias { get; set; }
2020-08-17 16:10:02 +02:00
}
}