18 lines
353 B
C#
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; }
|
|
}
|
|
}
|