mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-30 17:55:32 +00:00
Ported libs fo net V6
This commit is contained in:
13
HaWeb/Models/RegisterViewModel.cs
Normal file
13
HaWeb/Models/RegisterViewModel.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace HaWeb.Models;
|
||||
using HaDocument.Models;
|
||||
|
||||
public class RegisterViewModel {
|
||||
public string Category { get; set; } = "";
|
||||
public string Id { get; set; } = "";
|
||||
public string Search { get; set; } = "";
|
||||
public bool MaxSearch { get; set; } = false;
|
||||
// TODO: no null-checks in the Page Logic
|
||||
public List<CommentModel>? Comments { get; set; } = null;
|
||||
public List<(string, string)>? AvailableCategories { get; set; } = null;
|
||||
public List<(string, string)>? AvailableSideCategories { get; set; } = null;
|
||||
}
|
||||
Reference in New Issue
Block a user