mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
25 lines
590 B
C#
25 lines
590 B
C#
using BililiveRecorder.Core.Config;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Specialized;
|
|
using System.ComponentModel;
|
|
|
|
namespace BililiveRecorder.Core
|
|
{
|
|
public interface IRecorder : INotifyPropertyChanged, INotifyCollectionChanged, IEnumerable<IRecordedRoom>, ICollection<IRecordedRoom>
|
|
{
|
|
ConfigV1 Config { get; }
|
|
|
|
bool Initialize(string workdir);
|
|
|
|
void AddRoom(int roomid);
|
|
|
|
void AddRoom(int roomid, bool enabled);
|
|
|
|
void RemoveRoom(IRecordedRoom rr);
|
|
|
|
void SaveConfigToFile();
|
|
|
|
void Shutdown();
|
|
}
|
|
}
|