BililiveRecorder/BililiveRecorder.Core/StreamStatus.cs

44 lines
647 B
C#
Raw Normal View History

2018-03-13 14:23:53 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BililiveRecorder.Core
{
public class StreamStatus
{
// TODO:
public bool isStreaming
{
get
{
return false;
}
}
public bool HttpAPIStreaming
{
get
{
return false;
}
set
{
}
}
public bool DanmakuStreaming
{
get
{
return false;
}
set
{
}
}
}
}