2022-09-26 04:05:23 +03:00
|
|
|
using System.Collections.Immutable;
|
|
|
|
|
2022-10-30 19:48:24 +03:00
|
|
|
namespace CodeLiturgy.Views
|
2022-09-26 04:05:23 +03:00
|
|
|
{
|
|
|
|
public enum ViewType
|
|
|
|
{
|
|
|
|
System,
|
2022-10-27 20:13:02 +03:00
|
|
|
Account,
|
2022-11-17 00:17:44 +03:00
|
|
|
Environments,
|
2022-09-26 04:05:23 +03:00
|
|
|
Root,
|
|
|
|
Undefined
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|