mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
19 lines
452 B
C#
19 lines
452 B
C#
using System;
|
|
|
|
namespace BililiveRecorder.Core.Api.Danmaku
|
|
{
|
|
internal class StatusChangedEventArgs : EventArgs
|
|
{
|
|
public static readonly StatusChangedEventArgs True = new StatusChangedEventArgs
|
|
{
|
|
Connected = true
|
|
};
|
|
public static readonly StatusChangedEventArgs False = new StatusChangedEventArgs
|
|
{
|
|
Connected = false
|
|
};
|
|
|
|
public bool Connected { get; set; }
|
|
}
|
|
}
|