"""
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License.
"""

from .media_card import MediaCard


class AnimationCard(MediaCard):
    """
    An animation card (Ex: gif or short video clip)

    This card type has the same structure as MediaCard but represents
    specific animation content like gifs or short video clips.
    """

    pass
