12 lines
299 B
C#
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; }
|
|
}
|
|
}
|