mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 19:57:27 +08:00
14 lines
293 B
C#
14 lines
293 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>();
|
|
|
|
}
|
|
}
|