todo-app-backend/TodoApp/API/Models/ApplicationSettings.cs

13 lines
229 B
C#
Raw Permalink Normal View History

2022-02-08 22:12:18 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace TodoApp.API.Models
{
public class ApplicationSettings
{
public string JWTSecret { get; set; }
}
}