1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-21 22:29:38 +02:00
Maybe/app/models/other_asset.rb

12 lines
125 B
Ruby
Raw Normal View History

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