export type PaymentStatus =
  | "OK"
  | "30"
  | "60"
  | "90"
  | "120"
  | "150"
  | "CC"
  | "VS"
  | "BR"
  | "RF"
  | "NA";

export interface YearlyRecord {
  year: number;
  months: PaymentStatus[];
}

export interface AccountRecord {
  accountName: string;
  balance: number;
  monthsPaid: number;
  totalMonths: number;
  monthlyPayment: number;
  latePayments: number;
  paymentHistory: YearlyRecord[];
}
