Files
morbalint c7c6c626e1 fix nullable warnings (#49)
* fix nullable warnings

* use collection initalizers
2026-04-05 12:48:25 +02:00

10 lines
224 B
C#

namespace Kemkas.Web.Config;
public class MailgunOptions
{
public const string Section = "Email";
public string ApiKey { get; set; } = string.Empty;
public string DomainName { get; set; } = string.Empty;
}