ovpay/src/dotnet/padp-reference-web/PadpReferenceApi/model/ValidateOtpRequestV3.cs

13 lines
294 B
C#

using System.Text.Json.Serialization;
public class ValidateOtpRequestV3
{
[JsonPropertyName("otp")]
public string otp { get; set; }
[JsonPropertyName("source")]
public string source { get; set; }
[JsonPropertyName("recipient")]
public string recipient { get; set; }
}