using Hangfire; namespace Kreta.Job.Tasks.Core { public interface IUpdateCOVIDFlagJob { [AutomaticRetry(Attempts = 1)] void UpdateCOVIDFlag(); } }