Files
ths-blowerdoor-raven/data.py
2021-09-08 11:35:10 +02:00

13 lines
410 B
Python

class BlowerdoorData:
def __init__(self, path, docName, location, customer, pdfDate, blowerdoorDate):
self.path = path
self.docName = docName
self.location = location
self.customer = customer
self.blowerdoorDate = blowerdoorDate
self.pdfDate = pdfDate
#print("Bauort: " + location)
#print("Bauherr: " + customer)
#print("Blowerdoor: " + blowerdoorDate)