jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Model/ParseNameResult.cs

18 lines
397 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
using MediaBrowser.Controller.Providers;
namespace Jellyfin.Plugin.MetaShark.Model
{
public class ParseNameResult : ItemLookupInfo
{
public string ChineseName { get; set; }
public bool IsSpecial { get; set; }
}
}