// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
namespace AWS.Deploy.CLI.ServerMode.Models
{
///
/// Represents a column for a list/grid of rows
///
public class TypeHintResourceColumn
{
///
/// Name of the column to be displayed to users
///
public string DisplayName { get; set; }
public TypeHintResourceColumn(string displayName)
{
DisplayName = displayName;
}
}
}