mirror of
https://github.com/D4M13N-D3V/comissions-app-core-api.git
synced 2025-08-02 03:49:37 +00:00
7 lines
199 B
C#
7 lines
199 B
C#
namespace comissions.app.api.Models.User;
|
|
|
|
public class UserInfoUpdateModel
|
|
{
|
|
public string DisplayName { get; init; } = string.Empty;
|
|
public string Biography { get; init; } = string.Empty;
|
|
} |