13 lines
302 B
C#
13 lines
302 B
C#
using System.Text.Json.Serialization;
|
|
|
|
public class GenerateOtpRequestV3
|
|
{
|
|
[JsonPropertyName("source")]
|
|
public string source { get; set; }
|
|
|
|
[JsonPropertyName("recipient")]
|
|
public string recipient { get; set; }
|
|
|
|
[JsonPropertyName("channel")]
|
|
public string channel { get; set; }
|
|
} |