9 lines
219 B
C#
9 lines
219 B
C#
namespace Knots.DTO.Group;
|
|
|
|
public class UpdateGroupDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Nom { get; set; }
|
|
public int NombreMembres { get; set; }
|
|
public string? ProfilePicture { get; set; }
|
|
} |