Update 20210528 - mit LoginPopup

This commit is contained in:
2021-05-28 16:20:53 +02:00
parent 5dcd0d1046
commit a437ae0be4
172 changed files with 16125 additions and 103 deletions

34
Models/MenuItem.cs Normal file
View File

@@ -0,0 +1,34 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace BWPMModels
{
public class MenuItem
{
public string ID { get; set; } = "";
public string text { get; set; } = "";
public string parentId { get; set; } = "";
public string url { get; set; } = "";
public string menuvalue { get; set; } = "";
public int? menutype { get; set; } = 0;
public int? sort { get; set; } = 0;
public DateTime? erstellt_am { get; set; } = DateTime.Now;
public DateTime? mutiert_am { get; set; } = DateTime.Now;
public int? mutierer { get; set; } = 0;
public bool? aktiv { get; set; } = true;
}
}