Example #1
0
 public Attachments(params Attachment[] attachments)
 {
     if (attachments == null)
     {
         attachments = new Attachment[0];
     }
     Items = new List<Attachment>(attachments);
 }
Example #2
0
 public void Add(Attachment attachment)
 {
     Items.Add(attachment);
 }