示例#1
0
 protected NoticeState(NoticeState other)
 {
     Title = other.Title.Clone(); Content = other.Content.Clone();
 }
示例#2
0
 public NoticeState(LocalFormat content)
 {
     Title = new LocalFormatSimple(); Content = content;
 }
示例#3
0
 public NoticeState(LocalFormat title, LocalFormat content)
 {
     Title = title; Content = content;
 }
示例#4
0
 public NoticeState()
 {
     Title = new LocalFormatSimple(); Content = new LocalFormatSimple();
 }