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

feat: server id as realm name

This commit is contained in:
2024-04-22 18:56:14 +02:00
parent eb5a402cde
commit 4ddc2b9baa
2 changed files with 2 additions and 7 deletions

View File

@ -5,17 +5,12 @@ namespace MyMcRealms.MyMcAPI.Responses
{
public bool Success { get; set; }
public List<Server> Servers { get; set; }
public static implicit operator Task<object>(AllServersResponse? v)
{
throw new NotImplementedException();
}
}
public class Server
{
public string ServerName { get; set; } = string.Empty;
public string Connect { get; set; } = string.Empty;
public string GameVersion { get; set; } = string.Empty;
public string GameVersion { get; set; } = string.Empty;
}
}