10 lines
301 B
C#
10 lines
301 B
C#
namespace Indotalent.Infrastructure.Email.Mailjet;
|
|
|
|
public class MailjetSettingsModel
|
|
{
|
|
public bool IsUsed { get; set; }
|
|
public string ApiKey { get; set; } = string.Empty;
|
|
public string ApiSecret { get; set; } = string.Empty;
|
|
public string FromEmail { get; set; } = string.Empty;
|
|
}
|