Add JWT auth, token service & Neutrino endpoint
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace API.Contracts.Neutrino.Requests;
|
||||
|
||||
public class NeutrinoAuthenticateRequest
|
||||
{
|
||||
[JsonPropertyName("profileId")]
|
||||
public Guid ProfileId;
|
||||
|
||||
[JsonPropertyName("accessToken")]
|
||||
public required string AccessToken;
|
||||
|
||||
[JsonPropertyName("appVersion")]
|
||||
public required string AppVersion;
|
||||
}
|
||||
Reference in New Issue
Block a user