mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2025-04-01 13:38:35 -04:00
10 lines
249 B
C#
10 lines
249 B
C#
namespace Minecraft_Realms_Emulator.Shared.Responses
|
|
{
|
|
public class SubscriptionResponse
|
|
{
|
|
public long StartDate { get; set; }
|
|
public int DaysLeft { get; set; }
|
|
public string SubscriptionType { get; set; }
|
|
}
|
|
}
|