Files
mixtape/zero.Core/Entities/Spaces/Space.cs
T
2021-05-04 17:23:52 +02: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; }
}
}