42 lines
1.4 KiB
C#
42 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NP.Model
|
|
{
|
|
public class VMMM : VMBase
|
|
{
|
|
public DateTime? WStartDay { get; set; }
|
|
|
|
public IList<Menu> menus { get; set; }
|
|
public IList<UserAuth> userauths { get; set; }
|
|
public Menu menu { get; set; }
|
|
public IList<Users> Admins { get; set; }
|
|
|
|
public IList<Users> Users { get; set; }
|
|
public Users User { get; set; }
|
|
|
|
public Int64? AdminNo { get; set; }
|
|
|
|
|
|
|
|
public IList<ComCode> ComGroups { get; set; }
|
|
public IList<Banner> Banners { get; set; }
|
|
public IList<Popup> Popups {get;set;}
|
|
public IList<MenuPage> MenuPages { get; set; }
|
|
public IList<BoardMaster> BMs { get; set; }
|
|
public IList<NCS> NCSs { get; set; }
|
|
public IList<NCS> NCSs2 { get; set; }
|
|
public IList<Data> Datas { get; set; }
|
|
public IList<Data> Datas2 { get; set; }
|
|
public IList<CMLect> CMLects { get; set; }
|
|
public IList<CM> PCMs { get; set; }
|
|
public IList<CM> CMs { get; set; }
|
|
public IList<ActLog> ActLogs { get; set; }
|
|
public IList<AuthLog> AuthLogs { get; set; }
|
|
public IList<Term> Terms { get; set; }
|
|
public IList<CMCalc> CMCalcs { get; set; }
|
|
}
|
|
} |