Files
mixtape/zero.Core/Spaces/Models/Space.cs
T
2021-11-24 14:37:32 +01:00

25 lines
448 B
C#

using System;
namespace zero.Core.Entities
{
public class Space
{
public string Alias { get; set; }
public string EditorAlias { get; set; }
public Type Type { get; set; }
public SpaceView View { get; set; }
public string ComponentPath { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Icon { get; set; }
public bool LineBelow { get; set; }
}
}