20 lines
379 B
C#
20 lines
379 B
C#
namespace skydiveLogs_api.DataContract
|
|
{
|
|
public class UserResp
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Email { get; set; }
|
|
|
|
public string FirstName { get; set; }
|
|
|
|
public string LastName { get; set; }
|
|
|
|
public string Login { get; set; }
|
|
|
|
public string Roles { get; set; }
|
|
|
|
public string Token { get; set; }
|
|
}
|
|
}
|