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

19 lines
250 B
Ruby
Raw Normal View History

2024-02-02 23:09:35 +00:00
class Account::Property < ApplicationRecord
include Accountable
2024-02-02 23:06:29 +00:00
def icon
"icon-real-estate.svg"
end
def type_name
"Real Estate"
end
def color
{
background: "bg-[#FEF0F7]",
text: "text-[#F03695]"
}
end
2024-02-02 23:09:35 +00:00
end