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

19 lines
453 B
C#
Raw Normal View History

2021-02-23 18:03:37 +08:00
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; }
}
}