Represents a department.

interface Department {
    CostCode: string;
    Description: string;
    Email: string;
    Id: number;
    Name: string;
    PLCode: string;
}

Properties

CostCode: string

The cost code of the department.

Description: string

The description of the department.

Email: string

The email address of the department.

Id: number

The identifier of the department.

Name: string

The name of the department.

PLCode: string

The PL code of the department.