Files
Library/OwnChar/Data/DataManagerActions.cs
2024-07-05 11:56:55 +02:00

23 lines
935 B
C#

namespace OwnChar.Data;
public static class DataManagerActions
{
public static DataManagerAction Get { get; } = new("get");
public static DataManagerAction Save { get; } = new("save");
public static DataManagerAction Delete { get; } = new("delete");
public static DataManagerAction Associate { get; } = new("associate");
public static class Getter
{
public static DataManagerAction UserAccount { get; } = new(Get, "useraccount");
public static DataManagerAction Group { get; } = new(Get, "group");
public static DataManagerAction Character { get; } = new(Get, "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");
}
}