| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using Newtonsoft.Json;
- namespace ResfullApi.Models.edu
- {
- [Serializable]
- public class VOCABULARY
- {
- [JsonProperty("ID")]
- public string ID { get; set; }
- [JsonProperty("NAME_GLOBAL")]
- public string NAME_GLOBAL { get; set; }
- [JsonProperty("NAME_LOCAL")]
- public string NAME_LOCAL { get; set; }
- [JsonProperty("DESCRIPTION_GLOBAL")]
- public string DESCRIPTION_GLOBAL { get; set; }
- [JsonProperty("DESCRIPTION_LOCAL")]
- public string DESCRIPTION_LOCAL { get; set; }
- [JsonProperty("INTRODUCTION_GLOBAL")]
- public string INTRODUCTION_GLOBAL { get; set; }
- [JsonProperty("INTRODUCTION_LOCAL")]
- public string INTRODUCTION_LOCAL { get; set; }
- [JsonProperty("CONTENT")]
- public string CONTENT { get; set; }
- [JsonProperty("CONTENT_TYPE")]
- public string CONTENT_TYPE { get; set; }
- [JsonProperty("EXAMPLE")]
- public string EXAMPLE { get; set; }
- [JsonProperty("SPELL")]
- public string SPELL { get; set; }
- [JsonProperty("PICTURE")]
- public string PICTURE { get; set; }
- [JsonProperty("LESSON_ID")]
- public string LESSON_ID { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class VOCABULARY_LIST
- {
- [JsonProperty("status")]
- public string status { get; set; }
- [JsonProperty("message")]
- public string message { get; set; }
- [JsonProperty("LIST_VOCABULARY")]
- public VOCABULARY[] LIST_VOCABULARY { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|