示例#1
0
 public Entry(DeclensionFormsForCorrection singular, DeclensionFormsForCorrection plural)
 {
     Singular = singular;
     Plural   = plural;
 }
示例#2
0
 public Entry(CorrectionEntry entry)
 {
     Singular = new DeclensionFormsForCorrection(entry.Singular);
     Plural   = new DeclensionFormsForCorrection(entry.Plural);
 }