10 lines
278 B
Python
10 lines
278 B
Python
from .status import Status
|
|
from .credential import Credential
|
|
|
|
class Gate:
|
|
def __init__(self, id: str, name: str, status: Status = Status.ENABLED):
|
|
self.id = id
|
|
self.name = name
|
|
self.status = status if isinstance(status, Status) else Status(status)
|
|
|