diff --git a/Data.py b/Data.py new file mode 100644 index 0000000..29ff058 --- /dev/null +++ b/Data.py @@ -0,0 +1,6 @@ +class Data(object): + + def __init__(self, p_value1, p_value2, p_target): + self.value1 = p_value1 + self.value2 = p_value2 + self.target = p_target