using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MoviconHub.App.Models { /// /// WebSocket错误事件参数 /// public class WebSocketErrorEventArgs : EventArgs { /// /// 错误信息 /// public string ErrorMessage { get; set; } /// /// 异常对象 /// public Exception Exception { get; set; } /// /// 错误时间 /// public DateTime ErrorTime { get; set; } = DateTime.Now; } }