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