Ajoute une page utilisateur et une persistance MySQL
This commit is contained in:
16
ChessCubing.App/Models/Users/UpdateUserProfileRequest.cs
Normal file
16
ChessCubing.App/Models/Users/UpdateUserProfileRequest.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace ChessCubing.App.Models.Users;
|
||||
|
||||
public sealed class UpdateUserProfileRequest
|
||||
{
|
||||
public string? DisplayName { get; set; }
|
||||
|
||||
public string? Club { get; set; }
|
||||
|
||||
public string? City { get; set; }
|
||||
|
||||
public string? PreferredFormat { get; set; }
|
||||
|
||||
public string? FavoriteCube { get; set; }
|
||||
|
||||
public string? Bio { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user