Create Data class

This commit is contained in:
George Lacey 2017-02-10 12:11:46 +00:00
parent 1c0a5e823d
commit 9311411e15

6
Data.py Normal file
View File

@ -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