Browse Source

Improve API

master
Daniel Gyulai 4 years ago
parent
commit
e2c365238d
  1. 10
      CoviDok/Api/GenericResponse.cs
  2. 15
      CoviDok/Api/Response/AuthIdentity.cs

10
CoviDok/Api/Response.cs → CoviDok/Api/GenericResponse.cs

@ -5,10 +5,16 @@ using System.Threading.Tasks;
namespace CoviDok.Api namespace CoviDok.Api
{ {
public class Response public class GenericResponse
{ {
public int Version { get; set; } public int Version { get; set; }
public string Status { get; set; } public Status Status { get; set; }
public Dictionary<string, string> Body = new Dictionary<string, string>(); public Dictionary<string, string> Body = new Dictionary<string, string>();
} }
public enum Status
{
Error,
Success
}
} }

15
CoviDok/Api/Response/AuthIdentity.cs

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace CoviDok.Api.Response
{
public class AuthIdentity
{
public string Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public Role Role { get; set; }
}
}
Loading…
Cancel
Save