ViewAttendMeet.cs 440 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. namespace YZXYH.Repository.Models
  5. {
  6. [Serializable]
  7. public partial class ViewAttendMeet
  8. {
  9. public string Name { get; set; }
  10. public string Mobile { get; set; }
  11. public string AMNo { get; set; }
  12. public string AMName { get; set; }
  13. public string AMYear { get; set; }
  14. public string GraduationYear { get; set; }
  15. }
  16. }