4 lines
73 B
Python
4 lines
73 B
Python
|
class Request:
|
||
|
|
||
|
def __init__(self, id: int):
|
||
|
self.id = id
|