123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models
- {
- public class VisaCustomerSchool
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public int DCid { get; set; }
-
-
-
- public string School { get; set; }
-
-
-
- public string Address { get; set; }
-
-
-
- public string Teacher { get; set; }
-
-
-
- public string Subject { get; set; }
-
-
-
- public string StudyStart { get; set; }
-
-
-
- public string StudyEnd { get; set; }
- }
- }
|