//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
#nullable disable
namespace Microsoft.SqlTools.ServiceLayer.ModelManagement.Contracts
{
public class ModelRequestBase
{
///
/// Models database name
///
public string DatabaseName { get; set; }
///
/// The schema for model table
///
public string SchemaName { get; set; }
///
/// Models table name
///
public string TableName { get; set; }
///
/// Connection uri
///
public string OwnerUri { get; set; }
}
public class ModelResponseBase
{
}
}