Files
jellyfin-plugin-danmu/Jellyfin.Plugin.Danmu/Controllers/Entity/CommentCacheItem.cs
2025-11-16 21:59:19 +08:00

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;
}
}
}