| 1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class ViewAttendMeet
- {
- public string Name { get; set; }
- public string Mobile { get; set; }
- public string AMNo { get; set; }
- public string AMName { get; set; }
- public string AMYear { get; set; }
- public string GraduationYear { get; set; }
- }
- }
|