import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core'; export interface GetInventoryLocationsInput extends PagedAndSortedResultRequestDto { filterText?: string; name?: string; description?: string; code?: string; inventoryLocationId?: string; } export interface InventoryLocationCreateDto { name: string; description?: string; code?: string; inventoryLocationId?: string; } export interface InventoryLocationDto extends FullAuditedEntityDto { name: string; description?: string; code?: string; inventoryLocationId?: string; } export interface InventoryLocationUpdateDto { name: string; description?: string; code?: string; inventoryLocationId?: string; } export interface InventoryLocationWithNavigationPropertiesDto { inventoryLocation: InventoryLocationDto; }