mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
12 lines
184 B
Python
12 lines
184 B
Python
from ...flag.entity import Flag
|
|
|
|
|
|
class InputFlag(Flag):
|
|
def set_value(self, value: str):
|
|
self._value = value
|
|
|
|
def get_value(self) -> str:
|
|
return self._value
|
|
|
|
|