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