19 lines
472 B
C#
19 lines
472 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Air.Model.AirAdminViewModel
|
|
{
|
|
public class Bas_ModuleMenuModel
|
|
{
|
|
public int ModuleMenuId { get; set; }
|
|
public string MName { get; set; }
|
|
public string RightId { get; set; }
|
|
public string ImageUrl { get; set; }
|
|
public int SortId { get; set; }
|
|
public DateTime CTime { get; set; }
|
|
}
|
|
}
|