// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // using System; namespace Microsoft.SqlTools.ServiceLayer.ModelManagement { /// /// Model metadata /// public class ModelMetadata { /// /// Model id /// public int Id { get; set; } /// /// Model content length /// public Int64 ContentLength { get; set; } /// /// Model name /// public string ModelName { get; set; } /// /// Model created date /// public string Created { get; set; } /// /// Model deployment time /// public string DeploymentTime { get; set; } /// /// Model version /// public string Version { get; set; } /// /// Model description /// public string Description { get; set; } /// /// Model file path /// public string FilePath { get; set; } /// /// Model framework /// public string Framework { get; set; } /// /// Model framework version /// public string FrameworkVersion { get; set; } /// /// Model run id /// public string RunId { get; set; } /// /// Model deploy by /// public string DeployedBy { get; set; } } }