mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-30 02:31:08 +00:00
8 lines
229 B
C#
8 lines
229 B
C#
namespace CleanArchitecture.Domain.Settings;
|
|
|
|
public sealed class TokenSettings
|
|
{
|
|
public string Issuer { get; set; } = null!;
|
|
public string Audience { get; set; } = null!;
|
|
public string Secret { get; set; } = null!;
|
|
} |