8 lines
205 B
C#
8 lines
205 B
C#
namespace Modules.User.WebApi.Models;
|
|
|
|
public class UserNameEditModel
|
|
{
|
|
public string? FirstName { get; set; }
|
|
public string? Patronymic { get; set; }
|
|
public string? LastName { get; set; }
|
|
} |