7 lines
135 B
C#
7 lines
135 B
C#
namespace WebApp.Authentication;
|
|
|
|
public class AuthenticationSettings
|
|
{
|
|
public List<UserCredential> Users { get; set; } = new();
|
|
}
|