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; }