BotSharp/src/Infrastructure/BotSharp.Abstraction/Users/Models/UserActivationModel.cs
2024-12-06 17:34:43 +08:00

9 lines
224 B
C#

namespace BotSharp.OpenAPI.ViewModels.Users;
public class UserActivationModel
{
public string UserName { get; set; }
public string VerificationCode { get; set; }
public string RegionCode { get; set; } = "CN";
}