Files
2026-06-03 20:24:57 -07:00

8 lines
193 B
C#

namespace lxc_songlist.Services;
public sealed class AdminAuthOptions
{
public string PasswordHash { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}