mirror of
https://github.com/FAUSheppy/ths-blowerdoor-raven
synced 2025-12-06 06:51:36 +01:00
18 lines
534 B
Python
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)
|