diff options
-rwxr-xr-x | SendGrid/SendGrid/Transport/ITransport.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/SendGrid/SendGrid/Transport/ITransport.cs b/SendGrid/SendGrid/Transport/ITransport.cs index 97ebdb6..43c7202 100755 --- a/SendGrid/SendGrid/Transport/ITransport.cs +++ b/SendGrid/SendGrid/Transport/ITransport.cs @@ -5,8 +5,15 @@ using System.Text; namespace SendGrid.Transport
{
+ /// <summary>
+ ///
+ /// </summary>
public interface ITransport
{
+ /// <summary>
+ ///
+ /// </summary>
+ /// <param name="message"></param>
void Deliver(ISendGrid message);
}
}
|