10 lines
255 B
C#
10 lines
255 B
C#
namespace Socialize.Infrastructure.Emailer.Configuration;
|
|
|
|
public class EmailerOptions
|
|
{
|
|
public const string ConfigurationSection = "Emailer";
|
|
|
|
public string ApiKey { get; set; } = default!;
|
|
public string FromEmail { get; set; } = default!;
|
|
}
|