更新 IChineseNfoRegistry 和 ChineseNfoRegistry 类,修改 Job 方法的季号和集号参数类型为 int,增强类型安全性;简化日志记录,减少冗余信息,提高可读性。

This commit is contained in:
孙诚
2025-04-22 15:57:58 +08:00
parent 6c443f2fde
commit 84e35fb631
3 changed files with 130 additions and 204 deletions

View File

@@ -4,8 +4,8 @@ public interface IChineseNfoRegistry
{
void Job(
string? path = null,
string? seasonNumber = null,
string? episodeNumber = null,
int? seasonNumber = null,
int? episodeNumber = null,
bool ignoreLocked = false,
bool ignoreCompleted = false
);