Files
BeReadyBackend/BeReadyBackend/DTO/Groups/CreateGroupDto.cs
T

10 lines
295 B
C#

namespace BeReadyBackend.DTO.Groups;
public class CreateGroupDto
{
public string? Label { get; set; }
public string? Title { get; set; }
public string? Description { get; set; }
public int Duration { get; set; }
public List<CreateUserGroupDto>? UserGroups { get; set; }
}