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_liability.rb

18 lines
214 B
Ruby
Raw Normal View History

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