mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2025-04-05 15:38:36 -04:00
12 lines
338 B
C#
12 lines
338 B
C#
namespace Minecraft_Realms_Emulator.Entities
|
|
{
|
|
public class Invite
|
|
{
|
|
public int Id { get; set; }
|
|
public string InvitationId { get; set; }= string.Empty;
|
|
public string RecipeintUUID { get; set; } = string.Empty;
|
|
public World World { get; set; }
|
|
public DateTime Date { get; set; }
|
|
}
|
|
}
|