コード例 #1
0
 public ChangelogEntry(string title, string description, ChangelogType type)
 {
     Title       = title;
     Description = description;
     Type        = type;
 }
コード例 #2
0
 public ChangelogEntry()
 {
     Title       = string.Empty;
     Description = string.Empty;
     Type        = ChangelogType.Fix;
 }