2020-10-12 14:39:23 +09:00
|
|
|
|
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; }
|
2020-12-17 14:00:02 +09:00
|
|
|
|
public IList<Data> Datas2 { get; set; }
|
2020-10-12 14:39:23 +09:00
|
|
|
|
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; }
|
2021-01-08 11:27:03 +09:00
|
|
|
|
public IList<CG> CGs { get; set; }
|
2022-04-28 14:05:09 +09:00
|
|
|
|
|
|
|
|
|
|
public Excellog excellog { get; set; }
|
2020-10-12 14:39:23 +09:00
|
|
|
|
}
|
|
|
|
|
|
}
|