mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 19:57:27 +08:00
13 lines
317 B
C#
13 lines
317 B
C#
namespace BililiveRecorder.Core
|
|
{
|
|
public interface IRecordInfo
|
|
{
|
|
string SavePath { get; }
|
|
string StreamFilePrefix { get; set; }
|
|
string ClipFilePrefix { get; set; }
|
|
string StreamName { get; set; }
|
|
string GetStreamFilePath();
|
|
string GetClipFilePath();
|
|
}
|
|
}
|