コード例 #1
0
ファイル: TextDto.cs プロジェクト: jhorback/Harbor
 public static TextDto FromText(Text text)
 {
     return new TextDto(text);
 }
コード例 #2
0
ファイル: TextDto.cs プロジェクト: jhorback/Harbor
 public TextDto(Text text)
 {
     _text = text.Html;
 }