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

19 lines
256 B
Ruby

class Account::Depository < ApplicationRecord
include Accountable
def icon
"icon-bank-accounts.svg"
end
def type_name
"Bank Accounts"
end
def color
{
background: "bg-[#EAF4FF]",
text: "text-[#3492FB]"
}
end
end