From 741aace3fb3ee8b904e50a6705cc64b0423cfb9a Mon Sep 17 00:00:00 2001 From: Demis Bellot Date: Sun, 18 Aug 2024 17:44:06 +0800 Subject: [PATCH] Update SendEmailCommand.cs --- MyApp.ServiceInterface/Recurring/SendEmailCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MyApp.ServiceInterface/Recurring/SendEmailCommand.cs b/MyApp.ServiceInterface/Recurring/SendEmailCommand.cs index 4b07af8..17f9ab6 100644 --- a/MyApp.ServiceInterface/Recurring/SendEmailCommand.cs +++ b/MyApp.ServiceInterface/Recurring/SendEmailCommand.cs @@ -5,7 +5,7 @@ namespace MyApp.ServiceInterface.Recurring; -public abstract class SendEmailCommand(ILogger log, SmtpConfig config) : SyncCommand +public class SendEmailCommand(ILogger log, SmtpConfig config) : SyncCommand { private static long count = 0; protected override void Run(SendEmail request)