Files
jellyfin-plugin-danmu/Jellyfin.Plugin.Danmu/Model/EventType.cs
2023-02-15 17:28:56 +08:00

34 lines
532 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Jellyfin.Plugin.Danmu.Model;
/// <summary>
/// Enum EventType.
/// </summary>
public enum EventType
{
/// <summary>
/// The addevent.
/// </summary>
Add,
/// <summary>
/// The remove event.
/// </summary>
Remove,
/// <summary>
/// The update event.
/// </summary>
Update,
/// <summary>
/// The force update event.
/// </summary>
Force
}