namespace Blahblah.FlowerStory.Server.Controller; partial class UserController { } /// /// 登录参数 /// /// 用户 id /// 密码 public record LoginParamter(string Id, string Password); /// /// 用户注册参数 /// /// 用户 id /// 密码 /// 用户名 /// 邮箱 /// 联系电话 public record UserParameter(string Id, string Password, string UserName, string? Email, string? Mobile) : UpdateParameter(UserName, Email, Mobile); /// /// 用户修改参数 /// /// 用户名 /// 邮箱 /// 联系电话 public record UpdateParameter(string UserName, string? Email, string? Mobile);