8 lines
187 B
C#
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; }
|
|
} |