1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 13:19:39 +02:00
Maybe/app/models/crypto.rb

12 lines
124 B
Ruby
Raw Normal View History

class Crypto < ApplicationRecord
include Accountable
def color
"#737373"
end
def icon
"bitcoin"
end
end