/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface ProjectCategory { /** * The description of the project category. */ description?: string; /** * The name of the project category. Required on create, optional on update. */ name?: string; } //# sourceMappingURL=ProjectCategory.d.ts.map