fixed maven repository URL
[sixth-data.git] / src / main / java / eu / svjatoslav / sixth / data / model / IntegerUnit.java
1 /*
2  * Sixth Data. Author: Svjatoslav Agejenko. 
3  * This project is released under Creative Commons Zero (CC0) license.
4  *
5 */
6
7 package eu.svjatoslav.sixth.data.model;
8
9 public class IntegerUnit implements InformationUnit {
10
11     public final int value;
12
13     public IntegerUnit(final int value) {
14         this.value = value;
15     }
16
17     @Override
18     public int getType() {
19         return 0;
20     }
21
22 }