BililiveRecorder/BililiveRecorder.Core/IRecordedRoom.cs
2018-10-31 06:22:38 +08:00

32 lines
646 B
C#

using System;
using System.ComponentModel;
namespace BililiveRecorder.Core
{
public interface IRecordedRoom : INotifyPropertyChanged
{
int Roomid { get; }
int RealRoomid { get; }
string StreamerName { get; }
IRecordInfo RecordInfo { get; }
IStreamMonitor StreamMonitor { get; }
bool IsMonitoring { get; }
bool IsRecording { get; }
double DownloadSpeedKiBps { get; }
DateTime LastUpdateDateTime { get; }
void Clip();
bool Start();
void Stop();
void StartRecord();
void StopRecord();
void Shutdown();
}
}