17 lines
503 B
C#
17 lines
503 B
C#
using BeReadyBackend.DTO.Messages;
|
|
|
|
namespace BeReadyBackend.DTO.Groups;
|
|
|
|
public class GetGroupDetailsDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Label { get; set; }
|
|
public bool IsFinished { get; set; }
|
|
public string? Title { get; set; }
|
|
public string? Description { get; set; }
|
|
public int Duration { get; set; }
|
|
public DateTime CreationDate { get; set; }
|
|
|
|
public List<GetMessageDto>? Messages { get; set; }
|
|
public List<GetUserGroupDto>? Users { get; set; }
|
|
} |