Update 20210528 - mit LoginPopup
This commit is contained in:
34
Models/MenuItem.cs
Normal file
34
Models/MenuItem.cs
Normal 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;
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user