summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/economy/Money.java
blob: ff081e6099bb518ae8d9df159e5699e88cbaeb19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.earth2me.essentials.economy;

import com.earth2me.essentials.storage.MapValueType;
import com.earth2me.essentials.storage.StorageObject;
import java.util.HashMap;
import java.util.Map;
import lombok.Data;
import lombok.EqualsAndHashCode;


@Data
@EqualsAndHashCode(callSuper = false)
public class Money implements StorageObject
{
	@MapValueType(Double.class)
	private Map<String, Double> balances = new HashMap<String, Double>();
}