Interface CompanyWorkTask

Company Work

Remarks

An object representing the current work for a company

interface CompanyWorkTask {
    companyName: CompanyName;
    cyclesWorked: number;
    type: "COMPANY";
}

Properties

companyName: CompanyName
cyclesWorked: number
type: "COMPANY"