12 lines
194 B
C#
12 lines
194 B
C#
using System.Collections.Generic;
|
|
|
|
namespace skydiveLogs_api.Model
|
|
{
|
|
public class JwtSettings
|
|
{
|
|
public string Issuer { get; set; }
|
|
|
|
public string Passphrase { get; set; }
|
|
}
|
|
}
|