Files
ClubPenguinServer/MareSynchronosServer/MareSynchronosShared/Models/GroupTempInvite.cs
rootdarkarchon d83d9a6753 OneTime Invites Server handling (#17)
* add server-side handling for one time invites
2022-10-25 00:54:51 +02:00

18 lines
424 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MareSynchronosShared.Models;
public class GroupTempInvite
{
public Group Group { get; set; }
public string GroupGID { get; set; }
[MaxLength(64)]
public string Invite { get; set; }
public DateTime ExpirationDate { get; set; }
}