This commit is contained in:
孙诚
2025-02-27 16:58:21 +08:00
commit 80ab8d76eb
40 changed files with 2482 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,6 @@
namespace Interface.Jobs;
public interface IChineseNfoRegistry
{
void Job(bool ignoreLocked, bool ignoreCompleted);
}

View File

@@ -0,0 +1,6 @@
namespace Interface.Jobs;
public interface IDiskActionMonitorRegistry
{
void Job();
}

View File

@@ -0,0 +1,6 @@
namespace Interface.Jobs;
public interface IHealthyTaskRegistry
{
void Job();
}

View File

@@ -0,0 +1,6 @@
namespace Interface.Jobs;
public interface ILogTotalNotifyJobRegistry
{
void Job();
}

View File

@@ -0,0 +1,6 @@
namespace Interface.Jobs;
public interface IRSyncTaskRegistry
{
void Job();
}

View File

@@ -0,0 +1,8 @@
namespace Interface.Jobs;
public interface IShutdownRegistry
{
void Job();
Task CancelShutdown();
}

View File

@@ -0,0 +1,6 @@
namespace Interface.Jobs;
public interface IStartupRegistry
{
void Job();
}