BililiveRecorder/BililiveRecorder.Core/Recorder.cs
Genteure ba2b438293 ~
2018-03-20 00:12:32 +08:00

20 lines
401 B
C#

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Text;
namespace BililiveRecorder.Core
{
public class Recorder
{
public readonly ObservableCollection<RecordedRoom> Rooms = new ObservableCollection<RecordedRoom>();
public readonly Settings settings = new Settings();
public Recorder()
{
}
}
}