namespace CampusErrand.Models.Dtos; /// /// 封禁/解封跑腿请求 /// public class BanRunnerRequest { /// 是否封禁 public bool IsBanned { get; set; } } /// /// 处理申诉请求 /// public class ResolveAppealRequest { /// 处理结果 public string Result { get; set; } = string.Empty; /// 目标状态:Completed 或 Cancelled public string NewStatus { get; set; } = string.Empty; }