| 12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using ApiProcess.Models.bet;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.balance
- {
- public class loginObj: ResCommnon
- {
- [JsonProperty("role")]
- public string role { get; set; }
-
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|