Convert the AppSettings to model class

This commit is contained in:
Sébastien André
2020-12-24 20:19:31 +01:00
parent 2991a132bc
commit cd4ac50cb1
7 changed files with 51 additions and 30 deletions

View File

@@ -0,0 +1,11 @@
using System.Collections.Generic;
namespace skydiveLogs_api.Model
{
public class JwtSettings
{
public string Issuer { get; set; }
public string Passphrase { get; set; }
}
}