1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-23 07:09:39 +02:00
Maybe/app/models/account/property.rb
2024-02-03 02:50:09 +00:00

18 lines
250 B
Ruby

class Account::Property < ApplicationRecord
include Accountable
def icon
"icon-real-estate.svg"
end
def type_name
"Real Estate"
end
def color
{
background: "bg-[#FEF0F7]",
text: "text-[#F03695]"
}
end
end