Files
Cleanuparr/code/Infrastructure/Verticals/Jobs/IHandler.cs
2025-02-16 03:20:00 +02:00

6 lines
99 B
C#

namespace Infrastructure.Verticals.Jobs;
public interface IHandler
{
Task ExecuteAsync();
}