DetectMsisdn.cs 401 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Newtonsoft.Json.Linq;
  8. namespace Common.Http
  9. {
  10. public class DetectMsisdnReq
  11. {
  12. public string? msisdn { get; set; }
  13. public string? password { get; set; }
  14. public string? accessToken { get; set; }
  15. }
  16. }