17.232. Class TaskStatusCount
Namespace: ArmoniK.Core.Common.Storage
Assembly: ArmoniK.Core.Common.dll
Relation between a task status and the number of tasks with this status
public record TaskStatusCount : IEquatable<TaskStatusCount>
17.232.1. Inheritance
17.232.2. Implements
17.232.3. Inherited Members
object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()
17.232.4. Extension Methods
17.232.5. Constructors
17.232.5.1. TaskStatusCount(TaskStatus, int)
Relation between a task status and the number of tasks with this status
public TaskStatusCount(TaskStatus Status, int Count)
17.232.5.1.1. Parameters
Status TaskStatus
Status of the task
Count int
Number of tasks with the associated status
17.232.6. Properties
17.232.6.1. Count
Number of tasks with the associated status
public int Count { get; init; }
17.232.6.1.1. Property Value
17.232.6.2. Status
Status of the task
public TaskStatus Status { get; init; }