ProjectLighthouse/ProjectLighthouse/Types/DeletedBy.cs
2021-11-20 04:48:49 -05:00

9 lines
No EOL
283 B
C#

namespace LBPUnion.ProjectLighthouse.Types
{
public static class DeletedBy
{
public static string Moderator { get => "moderator"; }
public static string LevelAuthor { get => "level_author"; }
// TODO: deletion types for comments (profile etc)
}
}