Table of Contents

Class JobKeyDto

Namespace
Quartz.Dashboard.Services
Assembly
Quartz.Dashboard.dll

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

Group string

The job's group.

Name string

The job's name, unique within the group.

Properties

Group

The job's group.

public string Group { get; init; }

Property Value

string

Name

The job's name, unique within the group.

public string Name { get; init; }

Property Value

string