Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ParseResponseItem" /> class.
 /// </summary>
 /// <param name="Id">The optional identifier provided for this name on input..</param>
 /// <param name="Names">The name(s) identified in the input. It will return zero in case of empty or skipped input..</param>
 /// <param name="Outcome">Outcome.</param>
 public ParseResponseItem(string Id = default(string), List <NameDetailsOut> Names = default(List <NameDetailsOut>), OutcomeDefinition Outcome = default(OutcomeDefinition))
 {
     this.Id      = Id;
     this.Names   = Names;
     this.Outcome = Outcome;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ProcessResponseItem" /> class.
 /// </summary>
 /// <param name="Id">The optional identifier provided for this name on input..</param>
 /// <param name="Name">Name.</param>
 /// <param name="Outcome">Outcome.</param>
 public ProcessResponseItem(string Id = default(string), NameDetailsOut Name = default(NameDetailsOut), OutcomeDefinition Outcome = default(OutcomeDefinition))
 {
     this.Id      = Id;
     this.Name    = Name;
     this.Outcome = Outcome;
 }