mirror of
https://github.com/CyberL1/MyMcRealms.git
synced 2024-11-13 18:08:23 -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; }
|
|
}
|
|
}
|