package fr.umlv.tatoo.tutorial.translation;

public class ExprContent {
        private String translation;
        private int value;
        
		public ExprContent(String translation, int value) {
			this.translation = translation;
			this.value = value;
		}

		public String getTranslation() {
			return translation;
		}

		public int getValue() {
			return value;
		}
        
        
}
