mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 21:27:22 +01:00
12 lines
308 B
C#
12 lines
308 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
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; }
|
|
}
|