Files
Knots/Knots/DTO/Group/CreateGroupDto.cs
2026-03-12 16:09:17 +01:00

8 lines
187 B
C#

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