system-praktyk-api/src/InternshipSystem.Api/Options/SecurityOptions.cs
maxchil 54dfcaa7e7 feat/authorization ()
move client

merge

add Gut authentication and authorization

merge

dummy

Co-authored-by: MaxchilKH <m.w.bohdanowicz@gmail.com>
2020-09-13 01:07:40 +02:00

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; }
}
}