Files
mixtape/zero.Core/Entities/Spaces/Space.cs
T

25 lines
448 B
C#
Raw Normal View History

2020-04-29 13:18:53 +02:00
using System;
namespace zero.Core.Entities
{
2021-05-04 17:23:52 +02:00
public class Space
2020-04-29 13:18:53 +02:00
{
public string Alias { get; set; }
2020-10-20 15:01:34 +02:00
public string EditorAlias { get; set; }
2020-04-29 13:18:53 +02:00
public Type Type { get; set; }
public SpaceView View { get; set; }
public string ComponentPath { get; set; }
2020-04-29 13:18:53 +02:00
public string Name { get; set; }
public string Description { get; set; }
public string Icon { get; set; }
2020-05-03 15:43:26 +02:00
public bool LineBelow { get; set; }
2020-04-29 13:18:53 +02:00
}
}