summaryrefslogtreecommitdiff
path: root/src/models/card.ts
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-05-25 19:11:31 -0600
committerHombreLaser <sebastian-440@live.com>2023-05-25 19:11:31 -0600
commite8fa9bd7bba125a339f11876eb5ea99d0cd301b6 (patch)
tree5d8211221680a3c214b3a16b5d179722a8add085 /src/models/card.ts
parentda2631822f902094e691143302d6fc6b68e1cf56 (diff)
Añade historial de órdenes
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