ram #11

Merged
s481834 merged 21 commits from ram into master 2024-03-25 10:01:37 +01:00
2 changed files with 11 additions and 0 deletions
Showing only changes of commit 78eb846720 - Show all commits

6
Akcja.py Normal file
View File

@ -0,0 +1,6 @@
class Akcja:
srodki = [] #lista obiektów klasy Srodek
benefit = [] #lista typu string
def __init__(self, srodki, benefit):
self.srodki = srodki
self.benefit = benefit

5
Srodek.py Normal file
View File

@ -0,0 +1,5 @@
class Srodek:
def __init__(self, id, nazwa, typ):
self.id = id
self.nazwa = nazwa
self.typ = typ