feat: admin panel

This commit is contained in:
2024-05-28 11:48:10 +02:00
parent 820d48b912
commit b91b1dbe6a
23 changed files with 610 additions and 0 deletions

19
Panel/Classes/World.cs Normal file
View File

@ -0,0 +1,19 @@
namespace Panel.Classes
{
public class World
{
public int Id { get; set; }
public string? Owner { get; set; }
public string? OwnerUUID { get; set; }
public string? Name { get; set; }
public string? Motd { get; set; }
public string State { get; set; } = null!;
public string WorldType { get; set; } = null!;
public int MaxPlayers { get; set; }
public string? MinigameName { get; set; }
public int? MinigameId { get; set; }
public string? MinigameImage { get; set; }
public int ActiveSlot { get; set; }
public bool Member { get; set; }
}
}