7 lines
193 B
Python
7 lines
193 B
Python
# Class ############################################################################################
|
|
|
|
class ConfiguredFeature:
|
|
|
|
def __init__(self, gameId:str):
|
|
self.gameId = gameId
|