添加项目文件。

This commit is contained in:
jl
2023-01-13 15:30:20 +08:00
parent 40ed216831
commit bf208bde56
834 changed files with 470902 additions and 0 deletions

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