initial commit

This commit is contained in:
2025-01-10 08:37:18 +11:00
commit f577617b4d
80 changed files with 10113 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace YaleAccess.Models.Options
{
public class AuthenticationOptions
{
public const string Authentication = "Authentication";
public string Password { get; set; } = string.Empty;
}
}