Class JobKeyDto
A job's identity, as the pages carry it.
public sealed record JobKeyDto : IEquatable<JobKeyDto>
- Inheritance
-
JobKeyDto
- Implements
- Inherited Members
Constructors
JobKeyDto(string, string)
A job's identity, as the pages carry it.
public JobKeyDto(string Group, string Name)
Parameters
Properties
Group
The job's group.
public string Group { get; init; }
Property Value
Name
The job's name, unique within the group.
public string Name { get; init; }