Files
blazor-scm/Infrastructure/Email/SendGrid/SendGridSettingsModel.cs
T
2026-07-21 14:28:43 +07:00

9 lines
245 B
C#

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