20 lines
600 B
C#
20 lines
600 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace YiDa_WinForm.Config
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 报废上传状态事件参数(和RodUploadStatusEventArgs完全对齐)
|
|||
|
|
/// </summary>
|
|||
|
|
public class ScrapUploadStatusEventArgs : EventArgs
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否上传成功(用于更新 MainForm 的 _isScrapImageUploadedInCycle 标记)
|
|||
|
|
/// </summary>
|
|||
|
|
public bool IsUploadSuccess { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 附加消息(可选,如上传失败原因)
|
|||
|
|
/// </summary>
|
|||
|
|
public string Message { get; set; } = string.Empty;
|
|||
|
|
}
|
|||
|
|
}
|