app-interfaces/location.ts

12 lines
205 B
TypeScript
Raw Permalink Normal View History

2017-02-01 15:46:58 +01:00
/**
2017-09-15 16:45:17 +02:00
* Locaton interface for stock
* DO NOT MODIFY THIS FILE, EXTEND THE INTERFACE INSTEAD
*/
2017-02-01 15:46:58 +01:00
export interface Location {
2017-09-15 16:45:17 +02:00
id: number;
name: string;
code: string;
'parent.name': string;
}