mirror of
https://github.com/cxfksword/jellyfin-plugin-danmu.git
synced 2026-02-03 02:04:47 +08:00
16 lines
312 B
C#
16 lines
312 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
namespace Jellyfin.Plugin.Danmu.Model;
|
|
|
|
public class LibraryEvent
|
|
{
|
|
public BaseItem Item { get; set; }
|
|
|
|
public EventType EventType { get; set; }
|
|
}
|