Updating to reflect changes in DM 0.9.1
[merb_mart.git] / app / models / mart / accounts / credit_card_account.rb
blob044605110f7453af09853299f97297a9b4b4963b
1 module Mart
2   module Accounts
3     class CreditCardAccount < Accounts::AbstractAccount
5       property :cc_number,        String
6       property :expiration_month, Integer, :length => 2
7       property :expiration_year,  Integer, :length => 4
8       property :credit_ccv,       Integer, :length => 5
10     end
11   end
12 end