コード例 #1
0
 public Cell(MailComponent cellValue)
 {
     this.Content = cellValue;
 }
コード例 #2
0
ファイル: Link.cs プロジェクト: johlits/mail-builder
 public Link(MailComponent content, string href)
 {
     this.Content = content;
     this.Href    = href;
 }
コード例 #3
0
ファイル: CustomElement.cs プロジェクト: johlits/mail-builder
 public CustomElement(string selector, MailComponent content)
 {
     this.Content  = content;
     this.selector = selector;
 }