CodeLiturgy.Dashboard/CodeLiturgy.Data.Auth/AuthSettings.cs

9 lines
169 B
C#
Raw Normal View History

2022-09-10 00:33:17 +03:00
namespace BlueWest.WebApi.Context.Users;
public class AuthSettings
{
2022-09-11 01:22:04 +03:00
/// <summary>
/// SecretKey
/// </summary>
public string SecretKey { get; set; }
2022-09-10 00:33:17 +03:00
}