mirror of
https://github.com/cxfksword/jellyfin-plugin-danmu.git
synced 2026-05-12 10:57:45 +08:00
34 lines
532 B
C#
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
|
|
}
|