2024-03-22 22:14:05 +01:00
|
|
|
class CropProtectionProduct:
|
2024-03-23 22:54:51 +01:00
|
|
|
def __init__(self, strong_against, plant_type):
|
2024-03-22 22:14:05 +01:00
|
|
|
self.strong_against = strong_against # pestycyd, herbicyd
|
2024-03-23 22:54:51 +01:00
|
|
|
self.plant_type = plant_type
|