app-interfaces/location.ts

12 lines
205 B
TypeScript

/**
* Locaton interface for stock
* DO NOT MODIFY THIS FILE, EXTEND THE INTERFACE INSTEAD
*/
export interface Location {
id: number;
name: string;
code: string;
'parent.name': string;
}