BililiveRecorder/BililiveRecorder.Core/StreamMonitor.cs
Genteure 3e18db09ca ~
2018-03-15 21:55:01 +08:00

23 lines
439 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();
}
public void CheckAfterSeconeds(uint seconds)
{
throw new NotImplementedException();
}
}
}