Class DefectCountsNode
A summary of a particular defect.
[DataContract(Namespace = "http://schemas.datacontract.org/2004/07/Acuit.Pinpoint.Server.Business")]
public class DefectCountsNode
- Inheritance
-
DefectCountsNode
- Inherited Members
Constructors
DefectCountsNode(Defect)
Initializes a new instance of the DefectCountsNode class.
public DefectCountsNode(Defect defect)
Parameters
defectDefectThe defect.
Exceptions
- ArgumentNullException
defectis null.
Properties
Children
Gets or sets the list of child nodes, or null of this is a leaf node.
public IList<DefectCountsNode>? Children { get; set; }
Property Value
Count
Gets or sets the number of unique units against which this defect or group of defects was flagged.
[DataMember]
public int Count { get; set; }
Property Value
Defect
Gets the defect.
[DataMember]
public Defect Defect { get; }