19 lines
601 B
C#
19 lines
601 B
C#
namespace kehati.Models.Data.Master;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
[Table("ms_menu")]
|
|
public class Menu
|
|
{
|
|
public int MsMenuId { get; set; }
|
|
[Column("parent_id")]
|
|
public int ParentId { get; set; }
|
|
public string Title { get; set; } = "";
|
|
public string Module { get; set; } = "";
|
|
public string Url { get; set; } = "";
|
|
[Column("menu_type")]
|
|
public string MenuType { get; set; } = "";
|
|
[Column("menu_icon")]
|
|
public string MenuIcon { get; set; } = "";
|
|
|
|
public string Ordering { get; set; } = "";
|
|
public string Status { get; set; } = "";
|
|
} |