Files
psp_panel/src/app/modules/inventories/models/io.d.ts
T

15 lines
281 B
TypeScript
Raw Normal View History

export interface IInventoryRawResponse {
id: number;
name: string;
location: string;
isActive: boolean;
}
export interface IInventoryResponse extends IInventoryRawResponse {}
export interface IInventoryRequest {
name: string;
location: string;
isActive: boolean;
}