summaryrefslogtreecommitdiff
path: root/src/com/mavlon/finances/Person.java
blob: 8f216098f62d990d91822c899eebedc5d52eaa99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.mavlon.finances;

import java.io.Serializable;

public class Person implements Serializable {
    public final Wallet wallet = new Wallet();
    public final Job job = new Job();
    public final Item dreamItem = new Item();
    public final Country country = new Country();
    public final Statistics statistics = new Statistics();

    public Person() {
    }
}