YNICTE/Model/VMHome.cs

21 lines
581 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 VMHome : VMBase
{
public String MainSearch { get; set; }
public IList<BaseModel> Searches{get;set;}
public IList<Users> Admins { get; set; }
public Data Data { get; set; }
public IList<CM> CMs { get; set; }
public IList<Data> Datas { get; set; }
public IList<CMInning> CMInnings { get; set; }
2020-10-28 15:25:13 +09:00
public int? Edutype { get; set; }
2020-10-12 14:39:23 +09:00
}
}