Files
mixtape/zero.Core/Entities/Spaces/Space.cs
T
2020-05-03 15:43:26 +02:00

23 lines
403 B
C#

using System;
namespace zero.Core.Entities
{
public class Space
{
public string Alias { 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; }
}
}