Ejemplo n.º 1
0
 public Cell(MailComponent cellValue)
 {
     this.Content = cellValue;
 }
Ejemplo n.º 2
0
 public Link(MailComponent content, string href)
 {
     this.Content = content;
     this.Href    = href;
 }
Ejemplo n.º 3
0
 public CustomElement(string selector, MailComponent content)
 {
     this.Content  = content;
     this.selector = selector;
 }