BililiveRecorder/BililiveRecorder.Core/Event/NetworkingStatsEventArgs.cs
2021-02-23 18:03:37 +08:00

18 lines
370 B
C#

using System;
namespace BililiveRecorder.Core.Event
{
public class NetworkingStatsEventArgs : EventArgs
{
public DateTimeOffset StartTime { get; set; }
public DateTimeOffset EndTime { get; set; }
public TimeSpan Duration { get; set; }
public int BytesDownloaded { get; set; }
public double Mbps { get; set; }
}
}