mirror of
https://github.com/cxfksword/jellyfin-plugin-danmu.git
synced 2026-05-12 10:57:45 +08:00
19 lines
379 B
C#
19 lines
379 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
namespace Jellyfin.Plugin.Danmu.Model;
|
|
|
|
public class SubtitleId
|
|
{
|
|
public string ItemId { get; set; }
|
|
|
|
public string Id { get; set; }
|
|
|
|
public string ProviderId { get; set; }
|
|
}
|