LearnGodot/Parsers/ItemParser.cs
2026-01-02 23:35:05 +08:00

19 lines
362 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Collections.Generic;
using System.Threading.Tasks;
using Learn.Models;
namespace Learn.Parsers;
/// <summary>
/// 目标的解析字段:
/// "季度"
/// "剧名"
/// "发布组"
/// "集数"
/// "类型""额外内容", "字幕", "剧集"
/// "字幕语言"
/// </summary>
public interface ItemParser
{
public Task Parse(TreeNode node);
}