mirror of
https://github.com/CyberL1/MyMcRealms.git
synced 2025-07-13 06:39:41 -04:00
Fetch all my-mc servers
This commit is contained in:
19
MyMcRealms/MyMcAPI/Responses/AllServersResponse.cs
Normal file
19
MyMcRealms/MyMcAPI/Responses/AllServersResponse.cs
Normal file
@ -0,0 +1,19 @@
|
||||
|
||||
namespace MyMcRealms.MyMcAPI.Responses
|
||||
{
|
||||
public class AllServersResponse
|
||||
{
|
||||
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 Connect { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user