loginObj.cs 445 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using ApiProcess.Models.bet;
  6. using Newtonsoft.Json;
  7. namespace ApiProcess.Models.balance
  8. {
  9. public class loginObj: ResCommnon
  10. {
  11. [JsonProperty("role")]
  12. public string role { get; set; }
  13. public override string ToString()
  14. {
  15. return JsonConvert.SerializeObject(this);
  16. }
  17. }
  18. }