Files
Knots/Knots/DTO/Group/GetGroupDetailsDto.cs
2026-03-12 16:24:32 +01:00

9 lines
223 B
C#

namespace Knots.DTO.Group;
public class GetGroupDetailsDto
{
public int Id { get; set; }
public string? Nom { get; set; }
public int NombreMembres { get; set; }
public string? ProfilePicture { get; set; }
}