BililiveRecorder/BililiveRecorder.Core/IRecordInfo.cs
2018-10-25 19:20:23 +08:00

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();
}
}