namespace SendGridMail.Transport { /// /// /// public interface ITransport { /// /// Delivers a message using the protocol of the derived class /// /// the message to be delivered void Deliver(ISendGrid message); } }