Bitwarden-app-android-iphon.../src/Core/Models/Request/VerifyOTPRequest.cs

14 lines
216 B
C#

using System;
namespace Bit.Core.Models.Request
{
public class VerifyOTPRequest
{
public string OTP;
public VerifyOTPRequest(string otp)
{
OTP = otp;
}
}
}