20 lines
469 B
C#
20 lines
469 B
C#
namespace PARR.API.Contracts.V1.Responses
|
|
{
|
|
public class UserResponse
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public DateTimeOffset DateCreated { get; set; }
|
|
|
|
public required string Ip { get; set; }
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
public DateTimeOffset? LastLogon { get; set; }
|
|
|
|
public List<RoleResponse>? Roles { get; set; }
|
|
}
|
|
}
|