mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2025-03-30 20:48:36 -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";
|
|
}
|
|
} |