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

12 lines
130 B
Ruby
Raw Normal View History

class OtherLiability < ApplicationRecord
include Accountable
def color
"#737373"
end
2024-10-18 18:25:17 -04:00
def icon
"minus"
2024-10-18 18:25:17 -04:00
end
end