Files
mixtape/zero.Backoffice/Services/Sections/BackofficeSectionPresentation.cs
T
2021-12-06 13:29:15 +01:00

18 lines
382 B
C#

namespace zero.Backoffice.Services;
public class BackofficeSectionPresentation
{
public string Alias { get; set; }
public string Name { get; set; }
public string Icon { get; set; }
public string Color { get; set; }
public string Url { get; set; }
public bool IsExternal { get; set; }
public IEnumerable<BackofficeSectionPresentation> Children { get; set; }
}