Files
ths-blowerdoor-raven/data.py
2022-01-26 11:44:09 +01:00

18 lines
534 B
Python

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