presence/Presence.API/Response/UserResponse.cs
2024-11-26 08:09:12 +03:00

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