blob: 42b602496fad46fd67b5efcfb0bc54d4bdacc72f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
pub const PAYEE_NAMES: &[&'static str] = &[
"Starting Balance",
"Employer Ltd",
"Tesco",
];
pub struct PayeeNamesDict {
pub starting_balances: &'static str,
pub employer: &'static str,
pub tesco: &'static str,
}
pub const PAYEE_NAMES_DICT: PayeeNamesDict = PayeeNamesDict {
starting_balances: PAYEE_NAMES[0],
employer: PAYEE_NAMES[1],
tesco: PAYEE_NAMES[2],
};
|