| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using ApiProcess.Models.bet;
- using CommonObj.model;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.balance
- {
- public class serviceObj
- {
- [JsonProperty("id")]
- public string id { get; set; }
- [JsonProperty("code")]
- public string code { get; set; }
- [JsonProperty("name")]
- public string name { get; set; }
- [JsonProperty("description")]
- public string description { get; set; }
- [JsonProperty("shortCode")]
- public string shortCode { get; set; }
- [JsonProperty("command")]
- public string command { get; set; }
- [JsonProperty("contentEn")]
- public string contentEn { get; set; }
- [JsonProperty("contentFr")]
- public string contentFr { get; set; }
- [JsonProperty("contentLc")]
- public string contentLc { get; set; }
- [JsonProperty("note")]
- public string note { get; set; }
- [JsonProperty("companyId")]
- public string companyId { get; set; }
- [JsonProperty("usersCreated")]
- public string usersCreated { get; set; }
- [JsonProperty("dateCreated")]
- public string dateCreated { get; set; }
- [JsonProperty("usersUpdate")]
- public string usersUpdate { get; set; }
- [JsonProperty("dateUpdate")]
- public string dateUpdate { get; set; }
- [JsonProperty("msgRegisterSuccess")]
- public string msgRegisterSuccess { get; set; }
- [JsonProperty("msgRegisterFlase")]
- public string msgRegisterFlase { get; set; }
- [JsonProperty("msgConfirm")]
- public string msgConfirm { get; set; }
- [JsonProperty("isActive")]
- public string isActive { get; set; }
- [JsonProperty("isMyService")]
- public string isMyService { get; set; }
- [JsonProperty("serviceGroupName")]
- public string serviceGroupName { get; set; }
- [JsonProperty("serviceGroupId")]
- public string serviceGroupId { get; set; }
- [JsonProperty("apiServiceId")]
- public string apiServiceId { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class serviceObjList : Response
- {
- [JsonProperty("rowsOnPage")]
- public string rowsOnPage { get; set; }
- [JsonProperty("seqPage")]
- public string seqPage { get; set; }
- [JsonProperty("totalPage")]
- public string totalPage { get; set; }
- [JsonProperty("serviceObjList")]
- public serviceObj[] list { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|