BotSharp/src/Infrastructure/BotSharp.Abstraction/Users/Models/UserActivationModel.cs

9 lines
224 B
C#
Raw Normal View History

2024-05-26 01:34:29 +00:00
namespace BotSharp.OpenAPI.ViewModels.Users;
public class UserActivationModel
{
public string UserName { get; set; }
public string VerificationCode { get; set; }
2024-12-06 09:34:43 +00:00
public string RegionCode { get; set; } = "CN";
2024-05-26 01:34:29 +00:00
}