export interface Unit {
  id?: number;
  name: string;
  abbreviation: string; // Ej: "kg", "pcs", "lt"
  createdAt?: string;
  updatedAt?: string;
  deletedAt?: string | null;
}
