summaryrefslogtreecommitdiff
path: root/src/models/card.ts
blob: b1435807b307bca7a144df2e282d74b0603b29c3 (plain)
1
2
3
4
5
6
7
8
export interface Card {
  id: number;
  number: number;
  expiration_year: string;
  expiration_month: number;
  expiration_day: number;
  security_code: number;
}