mirror of
https://github.com/CyberL1/MyMcRealms.git
synced 2024-11-14 10:28:21 -05: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; }
|
|||
|
}
|
|||
|
}
|