// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
using System.Collections.Generic;
namespace AWS.Deploy.Common.DeploymentManifest
{
///
/// This class supports serialization and de-serialization of the deployment-manifest file.
///
public class DeploymentManifestModel
{
public List DeploymentProjects { get; set; }
public DeploymentManifestModel(List deploymentProjects)
{
DeploymentProjects = deploymentProjects;
}
}
}