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; }
|
|
|
|
|
|
2020-04-30 11:53:59 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
}
|