study-lib-backend/API/Models/ApplicationSettings.cs
2020-12-16 21:41:14 +01:00

13 lines
230 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace StudyLib.API.Models
{
public class ApplicationSettings
{
public string JWTSecret { get; set; }
}
}