VerificationCodeController.Dto.cs 253 B

1234567891011
  1. namespace GxPress.Api.AppControllers
  2. {
  3. public partial class VerificationCodeController
  4. {
  5. public class VerificationDto
  6. {
  7. public string ServiceUrl{get;set;}
  8. public string Code { get; set; }
  9. }
  10. }
  11. }