14 lines
169 B
C#
14 lines
169 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace zero.Core.Entities
|
|
{
|
|
public enum SpaceView
|
|
{
|
|
List,
|
|
Editor,
|
|
Custom
|
|
}
|
|
}
|