1
1
mirror of https://github.com/CyberL1/MyMcRealms.git synced 2025-07-13 06:39:41 -04:00

feat: configute page should use cache

This commit is contained in:
2024-05-19 11:39:41 +02:00
parent 55986afcf5
commit 58d5674ec7
5 changed files with 56 additions and 18 deletions

View File

@ -0,0 +1,11 @@
namespace MyMcRealms.MyMcAPI.Responses
{
public class WhitelistReponse
{
public bool Success { get; set; }
public string Message { get; set; } = null!;
public List<Whitelist> Result { get; set; } = null!;
public bool Enabled { get; set; }
public List<Op> Ops { get; set; } = null!;
}
}