summaryrefslogtreecommitdiffstats
path: root/src/SendGrid/Helpers/Mail/Model/BCCSettings.cs
blob: 79f989e8b867e479ac6804519257966ce49da6c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using Newtonsoft.Json;

namespace SendGrid.Helpers.Mail
{
    public class BCCSettings
    {
        [JsonProperty(PropertyName = "enable")]
        public bool? Enable { get; set; }

        [JsonProperty(PropertyName = "email")]
        public string Email { get; set; }
    }
}