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/other_asset.rb

18 lines
205 B
Ruby
Raw Normal View History

class OtherAsset < ApplicationRecord
include Accountable
class << self
def color
"#12B76A"
end
def icon
"plus"
end
2024-10-18 18:25:17 -04:00
def classification
"asset"
end
2024-10-18 18:25:17 -04:00
end
end