| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- 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 usersObj
- {
- [JsonProperty("id")]
- public string id { get; set; }
- [JsonProperty("userName")]
- public string userName { get; set; }
- [JsonProperty("pasword")]
- public string pasword { get; set; }
- [JsonProperty("role")]
- public string role { get; set; }
- [JsonProperty("contryCode")]
- public string contryCode { get; set; }
- [JsonProperty("isLock")]
- public string isLock { get; set; }
- [JsonProperty("totalFalse")]
- public string totalFalse { get; set; }
- [JsonProperty("timeLock")]
- public string timeLock { get; set; }
- [JsonProperty("note")]
- public string note { get; set; }
-
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class usersObjList : Response
- {
- [JsonProperty("rowsOnPage")]
- public string rowsOnPage { get; set; }
- [JsonProperty("seqPage")]
- public string seqPage { get; set; }
- [JsonProperty("totalPage")]
- public string totalPage { get; set; }
- [JsonProperty("usersObjList")]
- public usersObj[] list { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|