// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System.Text.Json.Serialization;
namespace Microsoft.Teams.Api.Cards;
///
/// A basic card
///
public class BasicCard : Card
{
///
/// Array of images for the card
///
[JsonPropertyName("images")]
[JsonPropertyOrder(4)]
public IList? Images { get; set; }
///
/// This action will be activated when user taps on the card itself
///
[JsonPropertyName("tap")]
[JsonPropertyOrder(5)]
public Action? Tap { get; set; }
}