1
0
mirror of synced 2025-02-15 18:32:37 +01:00

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; }
}