Files
chesscubing/ChessCubing.App/Models/Users/UpdateUserProfileRequest.cs

17 lines
348 B
C#

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; }
}