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.
39 lines
864 B
39 lines
864 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BWPMModels
|
|
{
|
|
public class Menu
|
|
{
|
|
public int ID { get; set; } = 0;
|
|
|
|
public string menutext { get; set; } = "";
|
|
|
|
public string menuvalue { get; set; } = "";
|
|
|
|
public string tooltip { get; set; } = "";
|
|
|
|
public string navigationurl { get; set; } = "";
|
|
|
|
public int? menutype { get; set; } = 0;
|
|
|
|
public int? parentnr { 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;
|
|
|
|
public int? mandantnr { get; set; } = 0;
|
|
|
|
public int? mandanttype { get; set; } = 0;
|
|
|
|
}
|
|
}
|