15 lines
281 B
TypeScript
15 lines
281 B
TypeScript
|
|
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;
|
||
|
|
}
|