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.
23 lines
550 B
23 lines
550 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace QualityControlPlatform.Models.DbContext
|
|
{
|
|
public partial class Menu
|
|
{
|
|
public Menu()
|
|
{
|
|
Rolemenus = new HashSet<Rolemenu>();
|
|
}
|
|
|
|
public int MenuId { get; set; }
|
|
public string MenuName { get; set; }
|
|
public string MenuCode { get; set; }
|
|
public string Description { get; set; }
|
|
public int? ParentId { get; set; }
|
|
|
|
public virtual ICollection<Rolemenu> Rolemenus { get; set; }
|
|
}
|
|
}
|
|
|