mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
20 lines
401 B
C#
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()
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
}
|