summaryrefslogtreecommitdiff
path: root/src/models/card.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/card.ts')
-rw-r--r--src/models/card.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/models/card.ts b/src/models/card.ts
new file mode 100644
index 0000000..b143580
--- /dev/null
+++ b/src/models/card.ts
@@ -0,0 +1,8 @@
+export interface Card {
+ id: number;
+ number: number;
+ expiration_year: string;
+ expiration_month: number;
+ expiration_day: number;
+ security_code: number;
+} \ No newline at end of file