fix: add RegionCode

This commit is contained in:
AnonymousDotNet 2024-10-22 17:43:15 +08:00
parent 0ed663ea76
commit 75bf042507

View file

@ -1,5 +1,3 @@
using System.Data;
namespace BotSharp.OpenAPI.ViewModels.Users;
public class UserResetPasswordModel
@ -8,6 +6,7 @@ public class UserResetPasswordModel
public string? Phone { get; set; }
public string Password { get; set; } = string.Empty;
public string VerificationCode { get; set; }
public string? RegionCode { get; set; }
public User ToUser()
{