Files
Library/OwnChar/Data/DataManagerActions.cs
2024-06-30 18:19:00 +02:00

23 lines
952 B
C#

namespace OwnChar.Data;
public static class DataManagerActions
{
public static DataManagerAction Create { get; } = new("create");
public static DataManagerAction Save { get; } = new("save");
public static DataManagerAction Delete { get; } = new("delete");
public static DataManagerAction Associate { get; } = new("associate");
public static class Creation
{
public static DataManagerAction UserAccount { get; } = new(Create, "useraccount");
public static DataManagerAction Group { get; } = new(Create, "group");
public static DataManagerAction Character { get; } = new(Create, "character");
}
public static class Association
{
public static DataManagerAction Owner { get; } = new(Associate, "owner");
public static DataManagerAction Parent { get; } = new(Associate, "parent");
public static DataManagerAction Members { get; } = new(Associate, "members");
}
}