/// <summary>
 /// Initializes a new instance of the <see cref="FireRiskResponse" /> class.
 /// </summary>
 /// <param name="ObjectId">ObjectId.</param>
 /// <param name="State">State.</param>
 /// <param name="FireShed">FireShed.</param>
 /// <param name="MatchedAddress">MatchedAddress.</param>
 public FireRiskResponse(string ObjectId = null, CommonState State = null, FireShed FireShed = null, MatchedAddress MatchedAddress = null)
 {
     this.ObjectId       = ObjectId;
     this.State          = State;
     this.FireShed       = FireShed;
     this.MatchedAddress = MatchedAddress;
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FireRiskLocationResponse" /> class.
 /// </summary>
 /// <param name="ObjectId">ObjectId.</param>
 /// <param name="State">State.</param>
 /// <param name="FireShed">FireShed.</param>
 public FireRiskLocationResponse(string ObjectId = null, CommonState State = null, FireShed FireShed = null)
 {
     this.ObjectId = ObjectId;
     this.State    = State;
     this.FireShed = FireShed;
 }