Backend/C_shape/WEBAPI/JWT/JWTdemo/Helpers/AppSettings.cs

8 lines
118 B
C#
Raw Normal View History

2024-05-06 14:09:39 +08:00
namespace JWTdemo.Helpers
{
public class AppSettings
{
public string? Secret { get; set; }
}
}