presence/Presence.API/Response/UserResponse.cs

14 lines
258 B
C#
Raw Permalink Normal View History

2024-11-26 05:09:12 +00:00
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; }
}
}