yale-user-access/packages/backend/Models/Options/AuthenticationOptions.cs

10 lines
219 B
C#
Raw Permalink Normal View History

2025-01-10 08:37:18 +11:00
namespace YaleAccess.Models.Options
{
public class AuthenticationOptions
{
public const string Authentication = "Authentication";
public string Password { get; set; } = string.Empty;
}
}