1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.Models
- {
- public class CodeValue
- {
- public CodeValue() {
- }
- public CodeValue(string code ,string value)
- {
- this.code = code;
- this.value=value;
- }
- public string code { get; set; }
- public string value { get; set; }
- }
- public class IdSchool
- {
- public string id { get; set; }
- public string school { get; set; }
- public string picture { get; set; }
- public string name { get; set; }
-
- }
- public class SchoolOrTeacher
- {
- public string id { get; set; }
- public string picture { get; set; }
- public string name { get; set; }
- public string scope { get; set; }
- }
- public class IdCode
- {
- public string id { get; set; }
- public string code { get; set; }
- }
- }
|