BililiveRecorder/BililiveRecorder.Core/Api/Danmaku/StatusChangedEventArgs.cs

19 lines
452 B
C#
Raw Normal View History

using System;
2021-02-23 18:03:37 +08:00
namespace BililiveRecorder.Core.Api.Danmaku
{
internal class StatusChangedEventArgs : EventArgs
2021-02-23 18:03:37 +08:00
{
public static readonly StatusChangedEventArgs True = new StatusChangedEventArgs
{
Connected = true
};
public static readonly StatusChangedEventArgs False = new StatusChangedEventArgs
{
Connected = false
};
public bool Connected { get; set; }
}
}