Files
DevToolsAvalonia/常用工具集/Utility/EventBus/FileDownloadEvent.cs
2025-08-26 08:37:44 +08:00

18 lines
353 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Weiz.EventBus.Core;
namespace MaiFu.Utility.EventBus
{
public class FileDownloadEvent : IEvent
{
public int What;
public long TotalLength { get; set; }
public long Current { get; set; }
}
}