11 lines
252 B
C#
11 lines
252 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; }
|
|
}
|
|
}
|