mirror of
https://github.com/we-promise/sure.git
synced 2026-04-18 03:24:09 +00:00
19 lines
250 B
Ruby
19 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
|