init
This commit is contained in:
9
src/Interface/Interface.csproj
Normal file
9
src/Interface/Interface.csproj
Normal file
@@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
6
src/Interface/Jobs/IChineseNfoRegistry.cs
Normal file
6
src/Interface/Jobs/IChineseNfoRegistry.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace Interface.Jobs;
|
||||
|
||||
public interface IChineseNfoRegistry
|
||||
{
|
||||
void Job(bool ignoreLocked, bool ignoreCompleted);
|
||||
}
|
||||
6
src/Interface/Jobs/IDiskActionMonitorRegistry.cs
Normal file
6
src/Interface/Jobs/IDiskActionMonitorRegistry.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace Interface.Jobs;
|
||||
|
||||
public interface IDiskActionMonitorRegistry
|
||||
{
|
||||
void Job();
|
||||
}
|
||||
6
src/Interface/Jobs/IHealthyTaskRegistry.cs
Normal file
6
src/Interface/Jobs/IHealthyTaskRegistry.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace Interface.Jobs;
|
||||
|
||||
public interface IHealthyTaskRegistry
|
||||
{
|
||||
void Job();
|
||||
}
|
||||
6
src/Interface/Jobs/ILogTotalNotifyJobRegistry.cs
Normal file
6
src/Interface/Jobs/ILogTotalNotifyJobRegistry.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace Interface.Jobs;
|
||||
|
||||
public interface ILogTotalNotifyJobRegistry
|
||||
{
|
||||
void Job();
|
||||
}
|
||||
6
src/Interface/Jobs/IRSyncTaskRegistry.cs
Normal file
6
src/Interface/Jobs/IRSyncTaskRegistry.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace Interface.Jobs;
|
||||
|
||||
public interface IRSyncTaskRegistry
|
||||
{
|
||||
void Job();
|
||||
}
|
||||
8
src/Interface/Jobs/IShutdownRegistry.cs
Normal file
8
src/Interface/Jobs/IShutdownRegistry.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Interface.Jobs;
|
||||
|
||||
public interface IShutdownRegistry
|
||||
{
|
||||
void Job();
|
||||
|
||||
Task CancelShutdown();
|
||||
}
|
||||
6
src/Interface/Jobs/IStartupRegistry.cs
Normal file
6
src/Interface/Jobs/IStartupRegistry.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace Interface.Jobs;
|
||||
|
||||
public interface IStartupRegistry
|
||||
{
|
||||
void Job();
|
||||
}
|
||||
Reference in New Issue
Block a user