Files
Govor/Govor.Core/Models/Invitation.cs
T
Artemy ce013eae49 Registration rework
+ InvitesRepository
+ AdminsRepository
+ rework jwt
2025-06-24 14:27:08 +07:00

11 lines
323 B
C#

namespace Govor.Core.Models;
public class Invitation
{
public Guid Id { get; set; }
public bool IsAdmin { get; set; }
public DateTime DateCreated { get; set; }
public DateTime EndDate { get; set; }
public int MaxParticipants { get; set; }
public List<User> Users { get; set; } = new List<User>();
}