14 lines
256 B
C#
14 lines
256 B
C#
namespace skydiveLogs_api.DataContract
|
|
{
|
|
public class UserResp
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string FirstName { get; set; }
|
|
|
|
public string LastName { get; set; }
|
|
|
|
public string Login { get; set; }
|
|
}
|
|
}
|