Exemplo n.º 1
0
 /// <summary>
 /// Instantiate SendEmailResponse with the given status code and the given description.
 /// </summary>
 public SendEmailResponse(SendEmailCode statusCode, String description)
 {
     StatusCode  = statusCode;
     Description = description;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Instantiate SendEmailResponse with the given status code and an empty description.
 /// </summary>
 public SendEmailResponse(SendEmailCode statusCode)
     : this(statusCode, String.Empty)
 {
 }