namespace Indotalent.Infrastructure.Email.SendGrid; public class SendGridSettingsModel { public bool IsUsed { get; set; } public string ApiKey { get; set; } = string.Empty; public string FromEmail { get; set; } = string.Empty; }