mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2025-07-09 13:09:42 -04:00
10 lines
352 B
C#
10 lines
352 B
C#
namespace Minecraft_Realms_Emulator.Entities
|
|
{
|
|
public class Subscription
|
|
{
|
|
public int Id { get; set; }
|
|
public World World { get; set; }
|
|
public string StartDate { get; set; } = ((DateTimeOffset) DateTime.Now).ToUnixTimeMilliseconds().ToString();
|
|
public string SubscriptionType { get; set; } = "NORMAL";
|
|
}
|
|
} |