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; } }