summaryrefslogtreecommitdiffstats
path: root/src/SendGrid/Helpers/Mail/Model/MailSettings.cs
blob: 18756037d0868f0e3608d82a193b3a8e51848fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using Newtonsoft.Json;

namespace SendGrid.Helpers.Mail
{
    public class MailSettings
    {
        [JsonProperty(PropertyName = "bcc")]
        public BCCSettings BccSettings { get; set; }

        [JsonProperty(PropertyName = "bypass_list_management")]
        public BypassListManagement BypassListManagement { get; set; }

        [JsonProperty(PropertyName = "footer")]
        public FooterSettings FooterSettings { get; set; }

        [JsonProperty(PropertyName = "sandbox_mode")]
        public SandboxMode SandboxMode { get; set; }

        [JsonProperty(PropertyName = "spam_check")]
        public SpamCheck SpamCheck { get; set; }
    }
}