2025-03-19 15:01:58 +01:00

12 lines
299 B
C#

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; }
}
}