14 lines
351 B
C#
Executable File
14 lines
351 B
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Commerce.Contracts.Options;
|
|
public class JWT
|
|
{
|
|
public string Key { get; set; }
|
|
public string Issuer { get; set; }
|
|
public string Audience { get; set; }
|
|
public double DurationInMinutes { get; set; }
|
|
}
|