summaryrefslogtreecommitdiffstats
path: root/SendGrid/SendGridMail/Transport/ITransport.cs
blob: 26fccf44557b33a11bc1c8ad17a53d725c776dd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace SendGridMail.Transport
{
    /// <summary>
    /// 
    /// </summary>
    public interface ITransport
    {
        /// <summary>
        /// Delivers a message using the protocol of the derived class
        /// </summary>
        /// <param name="message">the message to be delivered</param>
        void Deliver(ISendGrid message);
    }
}