namespace NetAdmin.Domain.Dto.Sys.User; /// /// 请求:启用/禁用用户 /// public sealed record SetUserEnabledReq : Sys_User { /// [JsonIgnore(Condition = JsonIgnoreCondition.Never)] public override bool Enabled { get; init; } /// [JsonIgnore(Condition = JsonIgnoreCondition.Never)] public override long Id { get; init; } /// [JsonIgnore(Condition = JsonIgnoreCondition.Never)] public override long Version { get; init; } }