添加项目文件。
This commit is contained in:
25
Epost.Model/MenuInfoModel.cs
Normal file
25
Epost.Model/MenuInfoModel.cs
Normal file
@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Epost.Model
|
||||
{
|
||||
public class MenuInfoModel
|
||||
{
|
||||
private int _ID = 0;
|
||||
private string _MenuName = string.Empty;
|
||||
private string _Imgicon = string.Empty;
|
||||
private string _Imgicon1 = string.Empty;
|
||||
private string _LinkUrl = string.Empty;
|
||||
private int _ParentID = 0;
|
||||
|
||||
public int ID { get => _ID; set => _ID = value; }
|
||||
public string MenuName { get => _MenuName; set => _MenuName = value; }
|
||||
public string Imgicon { get => _Imgicon; set => _Imgicon = value; }
|
||||
public string Imgicon1 { get => _Imgicon1; set => _Imgicon1 = value; }
|
||||
public string LinkUrl { get => _LinkUrl; set => _LinkUrl = value; }
|
||||
public int ParentID { get => _ParentID; set => _ParentID = value; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user