14 lines
258 B
C#
14 lines
258 B
C#
|
namespace Presence.API.Response
|
|||
|
{
|
|||
|
public class UserResponse
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string LastName { get; set; }
|
|||
|
|
|||
|
public string FirstName { get; set; }
|
|||
|
|
|||
|
public string Patronymic { get; set; }
|
|||
|
}
|
|||
|
}
|