Files
NasRobot/src/Interface/Jobs/IChineseNfoRegistry.cs

12 lines
267 B
C#
Raw Normal View History

2025-02-27 16:58:21 +08:00
namespace Interface.Jobs;
public interface IChineseNfoRegistry
{
void Job(
string? tmdbId = null,
string? seasonNumber = null,
string? episodeNumber = null,
bool ignoreLocked = false,
bool ignoreCompleted = false
);
2025-02-27 16:58:21 +08:00
}