export interface EmployeeCategory {
  id: string;
  name: string;
  created_at: string;
  updated_at: string;
}

export interface CreateEmployeeCategoryPayload {
  name: string;
  id?: string;
}

export interface DeleteEmployeeCategoryResponse {
  message: string;
  id: string;
}
