17 lines
207 B
C#
17 lines
207 B
C#
|
using System.Collections.Immutable;
|
||
|
|
||
|
namespace BlueWest.Views
|
||
|
{
|
||
|
public enum ViewType
|
||
|
{
|
||
|
System,
|
||
|
Data,
|
||
|
Jobs,
|
||
|
Profile,
|
||
|
Root,
|
||
|
Undefined
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|