Skip to content

Commit

Permalink
Update SendEmailCommand.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Aug 18, 2024
1 parent f26405e commit 741aace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MyApp.ServiceInterface/Recurring/SendEmailCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace MyApp.ServiceInterface.Recurring;

public abstract class SendEmailCommand(ILogger<LogCommand> log, SmtpConfig config) : SyncCommand<SendEmail>
public class SendEmailCommand(ILogger<SendEmailCommand> log, SmtpConfig config) : SyncCommand<SendEmail>
{
private static long count = 0;
protected override void Run(SendEmail request)
Expand Down

0 comments on commit 741aace

Please sign in to comment.