//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
namespace Microsoft.Kusto.ServiceLayer.ObjectExplorer.Nodes
{
///
/// Has information for SMO object properties to be loaded with the SMO object
///
public class NodeSmoProperty
{
///
/// Property name
///
public string Name { get; set; }
///
/// Indicates which platforms a filter is valid for
///
public ValidForFlag ValidFor { get; set; }
}
}