mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 19:54:55 +00:00
17 lines
530 B
C#
17 lines
530 B
C#
using Govor.Core.Models.Users;
|
|
|
|
namespace Govor.Core.Models;
|
|
|
|
public class GroupInvitation
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid GroupId { get; set; }
|
|
public Guid UserMakerId { get; set; }
|
|
public string InvitationCode { get; set; }
|
|
public string Description {get; set;}
|
|
public DateTime EndDate { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
public int MaxParticipants { get; set; }
|
|
public List<Guid> GroupMemberships { get; set; } = new();
|
|
public User? UserMaker { get; set; }
|
|
} |