mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-15 19:22:19 +08:00
14 lines
244 B
C#
14 lines
244 B
C#
using System;
|
|
|
|
namespace BililiveRecorder.Flv
|
|
{
|
|
public class FileClosedEventArgs : EventArgs
|
|
{
|
|
public long FileSize { get; set; }
|
|
|
|
public double Duration { get; set; }
|
|
|
|
public object? State { get; set; }
|
|
}
|
|
}
|