18 lines
397 B
C#
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; }
|
|
}
|
|
}
|