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

22 lines
249 B
Ruby
Raw Normal View History

class Crypto < ApplicationRecord
include Accountable
class << self
def color
"#737373"
end
def classification
"asset"
end
def icon
"bitcoin"
end
def display_name
"Crypto"
end
end
end