mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
18 lines
316 B
C#
18 lines
316 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace BililiveRecorder.Core
|
|||
|
{
|
|||
|
public class StreamMonitor
|
|||
|
{
|
|||
|
|
|||
|
public event StreamStatusChangedEvent StreamStatusChanged;
|
|||
|
|
|||
|
public void Check()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|