1
0
mirror of synced 2024-12-18 17:35:55 +01:00
TaikoLocalServer/SharedProject/Models/Requests/VerifyOtpRequest.cs

8 lines
160 B
C#
Raw Normal View History

namespace SharedProject.Models.Requests;
public class VerifyOtpRequest
{
public string Otp { get; set; } = "";
public uint Baid { get; set; }
}