mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-23 07:09:39 +02:00
18 lines
250 B
Ruby
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
|