from typing import List

class AppsListSection():
    def __init__(self, name: str, apps_list: List):
        self.name = name
        self.apps_list = apps_list
