fg_yida_2/YiDa_WinForm/Config/ScrapUploadStatusEventArgs.cs
2026-01-29 08:39:56 +08:00

20 lines
600 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}
}