move client merge add Gut authentication and authorization merge dummy Co-authored-by: MaxchilKH <m.w.bohdanowicz@gmail.com>
21 lines
457 B
C#
21 lines
457 B
C#
using System;
|
|
using System.Security.Policy;
|
|
|
|
namespace InternshipSystem.Api.Options
|
|
{
|
|
public class SecurityOptions
|
|
{
|
|
public string Secret { get; set; }
|
|
public double Expiration { get; set; }
|
|
|
|
public Uri BaseUrl { get; set; }
|
|
|
|
public Uri TokenPath { get; set; }
|
|
|
|
public Uri ProfilePath { get; set; }
|
|
|
|
public Uri RedirectUrl { get; set; }
|
|
|
|
public string ClientId { get; set; }
|
|
}
|
|
} |