10 lines
219 B
C#
10 lines
219 B
C#
|
namespace YaleAccess.Models.Options
|
|||
|
{
|
|||
|
public class AuthenticationOptions
|
|||
|
{
|
|||
|
public const string Authentication = "Authentication";
|
|||
|
|
|||
|
public string Password { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|