betRes3GMsisdn.cs 489 B

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