Files
blazor-swm/Infrastructure/Email/SendGrid/SendGridSettingsModel.cs
T
2026-07-21 14:35:37 +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;
}