9 lines
223 B
C#
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; }
|
|
} |