"""
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License.
"""

from .media_card import MediaCard


class VideoCard(MediaCard):
    """
    Video card

    This card type has the same structure as MediaCard but represents
    video content specifically.
    """

    pass
