// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
using System.Collections.Generic;
using AWS.Deploy.CLI.ServerMode.Controllers;
namespace AWS.Deploy.CLI.ServerMode.Models
{
///
/// Output returned by the API
///
public class ListAllRecipesOutput
{
///
/// A list of Recipe IDs
///
public IList Recipes { get; set; } = new List();
}
}