| 123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Newtonsoft.Json.Linq;
- namespace Common.Http
- {
- public class DetectMsisdnReq
- {
- public string? msisdn { get; set; }
- public string? password { get; set; }
- public string? accessToken { get; set; }
- }
- }
|