123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.EducationManage
- {
- public class ExaminationMessageAnnounceView
- {
- public ExaminationMessageAnnounceView()
- {
- this.UserIDList = new List<Guid?>();
- }
- public Guid? ExaminationProjectID { get; set; }
- public string ExaminationProjectName { get; set; }
- public DateTime? ExaminationTime { get; set; }
- public string Remark { get; set; }
- public List<Guid?> UserIDList { get; set; }
- }
- }
|