import { AccountCostCenterType } from '../constants/app'; import { IDefaultAttributes } from './commonInterface'; export interface IAccountCostCenterModelAttributes extends IDefaultAttributes { id: string; instituteId: string; academicCalendarId: string; parentCostCenterId: string | null; code: string; name: string; type: AccountCostCenterType; refType: string | null; refId: string | null; }