コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FeatureModel" /> class.
 /// </summary>
 /// <param name="id">id.</param>
 /// <param name="name">name.</param>
 /// <param name="isCustom">isCustom.</param>
 /// <param name="featureType">featureType.</param>
 public FeatureModel(string id = default(string), string name = default(string), bool?isCustom = default(bool?), FeatureTypeModel featureType = default(FeatureTypeModel))
 {
     this.Id          = id;
     this.Name        = name;
     this.IsCustom    = isCustom;
     this.FeatureType = featureType;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FallbackMessageCategoryModel" /> class.
 /// </summary>
 /// <param name="id">id.</param>
 /// <param name="featureTypeId">featureTypeId.</param>
 /// <param name="name">name.</param>
 /// <param name="featureType">featureType.</param>
 public FallbackMessageCategoryModel(string id = default(string), string featureTypeId = default(string), string name = default(string), FeatureTypeModel featureType = default(FeatureTypeModel))
 {
     this.Id            = id;
     this.FeatureTypeId = featureTypeId;
     this.Name          = name;
     this.FeatureType   = featureType;
 }