mirror of
https://github.com/ysoftdevs/wapifuzz.git
synced 2026-01-13 15:13:29 +01:00
11 lines
344 B
Python
11 lines
344 B
Python
from typing import Union
|
|
|
|
|
|
class Parameter:
|
|
def __init__(self, name: str, value: str, data_type: Union[str, None], data_format: Union[str, None], is_from_config: bool):
|
|
self.name = name
|
|
self.value = value
|
|
self.data_type = data_type
|
|
self.data_format = data_format
|
|
self.is_from_config = is_from_config
|