croy 82d417b9e6 New StarlingX Automation Framework
Fresh start for the StarlingX automation framework.

Change-Id: Ie265e0791024f45f71faad6315c2b91b022934d1
2024-11-29 16:01:57 -05:00

25 lines
483 B
Python

class LabInfo:
"""
Class for lab info object
"""
def __init__(self, lab_info_id: int, lab_name: str):
self.lab_info_id = lab_info_id
self.lab_name = lab_name
def get_lab_info_id(self) -> int:
"""
Getter for lab info id
Returns:
"""
return self.lab_info_id
def get_lab_name(self) -> str:
"""
Getter for lab name
Returns: the lab name
"""
return self.lab_name