21 lines
358 B
TypeScript
21 lines
358 B
TypeScript
|
export interface CreateEquipmentCommand {
|
||
|
code?: string;
|
||
|
type?: string;
|
||
|
name: string;
|
||
|
commissioned?: Date;
|
||
|
decommissioned?: Date;
|
||
|
}
|
||
|
|
||
|
export interface UpdateEquipmentCommand {
|
||
|
id: string;
|
||
|
code?: string;
|
||
|
type?: string;
|
||
|
name: string;
|
||
|
commissioned?: Date;
|
||
|
decommissioned?: Date;
|
||
|
}
|
||
|
|
||
|
export interface DeleteEquipmentCommand {
|
||
|
id: string;
|
||
|
}
|