export type InventoryUnitType = 'COUNT' | 'VOLUME' | 'WEIGHT' | 'LENGTH';

export interface InventoryUnit {
  id?: number;
  name: string;
  abbreviation?: string | null;
  type: InventoryUnitType;
  createdAt?: string;
  updatedAt?: string;
  deletedAt?: string | null;
}
