export type ExpenseCenterType =
  | 'PLANT'
  | 'OFFICE'
  | 'ROUTE'
  | 'ADMINISTRATION'
  | 'GENERAL'
  | 'OTHER';

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