Files
sure/app/models/account/property.rb
2024-02-03 02:50:09 +00:00

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