You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
710 B
35 lines
710 B
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;
|
|
|
|
}
|
|
|
|
|
|
}
|