mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
26 lines
638 B
C#
26 lines
638 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BililiveRecorder.Core.Event
|
|
{
|
|
public sealed class RecordFileClosedEventArgs : RecordEventArgsBase
|
|
{
|
|
public RecordFileClosedEventArgs() { }
|
|
|
|
public RecordFileClosedEventArgs(IRoom room) : base(room) { }
|
|
|
|
[JsonIgnore]
|
|
public string FullPath { get; set; } = string.Empty;
|
|
|
|
public string RelativePath { get; set; } = string.Empty;
|
|
|
|
public long FileSize { get; set; }
|
|
|
|
public double Duration { get; set; }
|
|
|
|
public DateTimeOffset FileOpenTime { get; set; }
|
|
|
|
public DateTimeOffset FileCloseTime { get; set; }
|
|
}
|
|
}
|