14 lines
458 B
C#
14 lines
458 B
C#
namespace Core.Cerberos.External.Clients.Requests
|
|
{
|
|
public class UserRequest
|
|
{
|
|
public string Email { get; set; } = null!;
|
|
public string Name { get; set; } = null!;
|
|
public string? MiddleName { get; set; }
|
|
public string LastName { get; set; } = null!;
|
|
public string RoleId { get; set; } = null!;
|
|
public string[] Companies { get; set; } = null!;
|
|
public string[]? Projects { get; set; }
|
|
}
|
|
}
|