mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2025-04-02 14:08:36 -04:00
20 lines
811 B
C#
20 lines
811 B
C#
using Minecraft_Realms_Emulator.Responses;
|
|
|
|
namespace Minecraft_Realms_Emulator.Entities
|
|
{
|
|
public class WorldResponse : World
|
|
{
|
|
public string RemoteSubscriptionId { get; set; } = new Guid().ToString();
|
|
public int DaysLeft { get; set; } = 30;
|
|
public bool Expired { get; set; } = false;
|
|
public bool ExpiredTrial { get; set; } = false;
|
|
public string Compatibility { get; set; } = null!;
|
|
public List<SlotResponse> Slots { get; set; } = null!;
|
|
public string ActiveVersion { get; set; } = null!;
|
|
public int? ParentWorldId { get; set; }
|
|
public string? ParentWorldName { get; set; }
|
|
public int? MinigameId { get; set; }
|
|
public string? MinigameName { get; set; }
|
|
public string? MinigameImage { get; set; }
|
|
}
|
|
} |