mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
18 lines
370 B
C#
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; }
|
|
}
|
|
}
|