Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Cat" /> class.
 /// </summary>
 /// <param name="catAllOf">catAllOf</param>
 /// <param name="className">className (required)</param>
 /// <param name="color">color (default to &quot;red&quot;)</param>
 public Cat(CatAllOf catAllOf, string className, string color = "red") : base(className, color)
 {
     CatAllOf = catAllOf;
 }
 public Cat(Dictionary <string, int> dictionary, CatAllOf catAllOf, string className, string?color = "red") : base(className, color)
 {
     Dictionary = dictionary;
     CatAllOf   = catAllOf;
 }