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