15 lines
323 B
C#
15 lines
323 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Manager.Interfaces.DTO
|
|
{
|
|
public class UserDetailDTO
|
|
{
|
|
public string id { get; set; }
|
|
public string email { get; set; }
|
|
public string firstName { get; set; }
|
|
public string lastName { get; set; }
|
|
}
|
|
}
|