mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
19 lines
453 B
C#
19 lines
453 B
C#
using System;
|
|
|
|
namespace BililiveRecorder.Core.Api.Danmaku
|
|
{
|
|
public 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; }
|
|
}
|
|
}
|