export type InventoryLocationType = 'PLANT' | 'WAREHOUSE' | 'BRANCH' | 'VEHICLE';

export interface InventoryLocation {
  id?: number;
  name: string;
  description?: string | null;
  type: InventoryLocationType;
  createdAt?: string;
  updatedAt?: string;
  deletedAt?: string | null;
}
