add basic functionality

This commit is contained in:
Yannik Schmidt
2021-09-08 11:35:10 +02:00
parent 92408f29e9
commit bc7ba49de8
8 changed files with 207 additions and 62 deletions

13
data.py Normal file
View File

@@ -0,0 +1,13 @@
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)