19 lines
248 B
Swift
19 lines
248 B
Swift
//
|
|
// CreditCard.swift
|
|
//
|
|
//
|
|
// Created by josh on 2020/07/26.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
///
|
|
public struct CreditCard {
|
|
///
|
|
public var number: String?
|
|
///
|
|
public var name: String?
|
|
///
|
|
public var expireDate: DateComponents?
|
|
}
|