Class CurrentStatus
- Namespace
- The.Utility
- Assembly
- Instagile.Model.dll
public record CurrentStatus : IEquatable<CurrentStatus>
- Inheritance
-
CurrentStatus
- Implements
-
- Inherited Members
-
Constructors
CurrentStatus()
CurrentStatus(string, string, int, int?, ImmutableList<string>)
public CurrentStatus(string Step, string Element, int Current, int? Max, ImmutableList<string> Log)
Parameters
Step string
Element string
Current int
Max int?
Log ImmutableList<string>
Properties
Current
public int Current { get; init; }
Property Value
- int
Element
public string Element { get; init; }
Property Value
- string
Log
public ImmutableList<string> Log { get; init; }
Property Value
- ImmutableList<string>
Max
public int? Max { get; init; }
Property Value
- int?
Step
public string Step { get; init; }
Property Value
- string
StepElement
public string StepElement { get; }
Property Value
- string
Methods
WithStatus(Status)
public CurrentStatus WithStatus(Status update)
Parameters
update Status
Returns
- CurrentStatus