// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
namespace AWS.Deploy.Common.TypeHintData
{
///
/// Represents the 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;
}
}
}