JwtSettings has been added to config

This commit is contained in:
James Tombleson 2023-07-06 22:26:49 -07:00
parent 9e2b44df7c
commit 7b1407c2cb
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
namespace Newsbot.Collector.Domain.Models.Config;
public class JwtSettings
{
public string? Secret { get; set; }
}