26 lines
889 B
C#
26 lines
889 B
C#
![]() |
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; }
|
|||
|
}
|
|||
|
}
|