mirror of
https://github.com/FAUSheppy/ths-blowerdoor-raven
synced 2025-12-10 08:48:32 +01:00
13 lines
410 B
Python
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) |