2025-02-27 16:58:21 +08:00
|
|
|
namespace Interface.Jobs;
|
|
|
|
|
|
|
|
|
|
public interface IChineseNfoRegistry
|
|
|
|
|
{
|
2025-04-16 18:26:31 +08:00
|
|
|
void Job(
|
2025-04-17 19:00:56 +08:00
|
|
|
string? path = null,
|
2025-04-16 18:26:31 +08:00
|
|
|
string? seasonNumber = null,
|
|
|
|
|
string? episodeNumber = null,
|
|
|
|
|
bool ignoreLocked = false,
|
|
|
|
|
bool ignoreCompleted = false
|
|
|
|
|
);
|
2025-02-27 16:58:21 +08:00
|
|
|
}
|