YNICTE/Model/VMMy.cs

28 lines
896 B
C#
Raw Normal View History

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 VMMy : VMBase
{
public bool ismain { get; set; }
public Assign Assign { get; set; }
public IList<Data> Datas { get; set; }
public IList<Data> Datas2 { get; set; }
public IList<Board> Boards { get; set; }
public IList<PayItem> PIs { get; set; }
public IList<Lect> Lects { get; set; }
public Lect Lect { get; set; }
public Int64 lectno { get; set; }
public IList<CMInning> CMInnings { get; set; }
public Exam Exam { get; set; }
public IList<ExamUser> ExamUsers { get; set; }
public ExamUser ExamUser { get; set; }
public Users User { get; set; }
public IList<CM> CMs { get; set; }
}
}