8 lines
193 B
C#
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;
|
|
}
|