12 lines
259 B
C#
12 lines
259 B
C#
namespace Interface.Jobs;
|
|
|
|
public interface IChineseNfoRegistry
|
|
{
|
|
void Job(
|
|
string? path = null,
|
|
int? seasonNumber = null,
|
|
int? episodeNumber = null,
|
|
bool ignoreLocked = false,
|
|
bool ignoreCompleted = false
|
|
);
|
|
} |