mirror of
https://github.com/cxfksword/jellyfin-plugin-danmu.git
synced 2026-02-02 17:59:58 +08:00
19 lines
441 B
C#
19 lines
441 B
C#
|
|
using Jellyfin.Plugin.Danmu.Scrapers.Dandan.Entity;
|
|
|
|
namespace Jellyfin.Plugin.Danmu.Controllers.Entity
|
|
{
|
|
public class CommentCacheItem
|
|
{
|
|
|
|
public string ScraperProviderId { get; set; } = string.Empty;
|
|
|
|
public string CommentId { get; set; }
|
|
|
|
public CommentCacheItem(string providerId, string commentId)
|
|
{
|
|
ScraperProviderId = providerId;
|
|
CommentId = commentId;
|
|
}
|
|
}
|
|
} |