16 lines
417 B
C#
16 lines
417 B
C#
using ManagerService.Data;
|
|
|
|
namespace ManagerService.DTOs
|
|
{
|
|
public class UserDetailDTO
|
|
{
|
|
public string id { get; set; }
|
|
public string email { get; set; }
|
|
public string firstName { get; set; }
|
|
public string lastName { get; set; }
|
|
public string instanceId { get; set; }
|
|
public UserRole? role { get; set; }
|
|
public string? password { get; set; }
|
|
}
|
|
}
|