Ajout d'update pour patch + début validator

This commit is contained in:
2026-03-12 17:44:39 +01:00
parent 74cab09948
commit da3def1eea
20 changed files with 119 additions and 41 deletions

View File

@@ -0,0 +1,6 @@
namespace Knots.DTO.Group;
public class UpdateGroupNomDto
{
public string? Nom { get; set; }
}

View File

@@ -0,0 +1,6 @@
namespace Knots.DTO.Group;
public class UpdateGroupNombreMembresDto
{
public int NombreMembres { get; set; }
}

View File

@@ -0,0 +1,6 @@
namespace Knots.DTO.Group;
public class UpdateGroupProfilePictureDto
{
public string? ProfilePicture { get; set; }
}

View File

@@ -0,0 +1,6 @@
namespace Knots.DTO.User;
public class UpdateUserDescriptionDto
{
public string? Description {get; set;}
}

View File

@@ -0,0 +1,6 @@
namespace Knots.DTO.User;
public class UpdateUserEmailDto
{
public string? Email { get; set; }
}

View File

@@ -0,0 +1,6 @@
namespace Knots.DTO.User;
public class UpdateUserPasswordDto
{
public string? Password { get; set; }
}

View File

@@ -0,0 +1,6 @@
namespace Knots.DTO.User;
public class UpdateUserProfilePictureDto
{
public string? ProfilePicture { get; set; }
}

View File

@@ -0,0 +1,6 @@
namespace Knots.DTO.User;
public class UpdateUserTelDto
{
public string? Tel { get; set; }
}

View File

@@ -0,0 +1,6 @@
namespace Knots.DTO.User;
public class UpdateUsernameDto
{
public string? Username { get; set; }
}