"""
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License.
"""

from .basic_card import BasicCard


class HeroCard(BasicCard):
    """
    A Hero card (card with a single, large image)

    This card type has the same structure as BasicCard but is specifically
    meant to display cards with a single, large image.
    """

    pass
