added basic functionalities (login, create/del/rename pages)
This commit is contained in:
12
Tagger/Configuration.cs
Normal file
12
Tagger/Configuration.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Tagger;
|
||||
|
||||
public class User
|
||||
{
|
||||
public string Name { get; set; } = "";
|
||||
public string Password { get; set; } = "";
|
||||
}
|
||||
|
||||
public class Configuration
|
||||
{
|
||||
public List<User> Users { get; set; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user