initial commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using Microsoft.Extensions.Options;
|
||||
|
||||
namespace Indotalent.Infrastructure.Email;
|
||||
|
||||
public class EmailService(IOptions<EmailSettingsModel> options)
|
||||
{
|
||||
private readonly EmailSettingsModel _settings = options.Value;
|
||||
|
||||
public EmailSettingsModel GetConfiguration() => _settings;
|
||||
}
|
||||
Reference in New Issue
Block a user