mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 19:54:55 +00:00
76094af15b
+ tests + new services + InvitationDto and IInvitationReqest
9 lines
241 B
C#
9 lines
241 B
C#
namespace Govor.Core.Requests;
|
|
|
|
public class CreateInvitationRequest
|
|
{
|
|
public DateTime EndDate { get; set; }
|
|
public int MaxParticipants { get; set; }
|
|
public bool IsAdmin { get; set; }
|
|
public string Description { get; set; }
|
|
} |