Files
sqltoolsservice/src/Microsoft.SqlTools.ServiceLayer/Security/Contracts/CredentialInfo.cs
2022-03-04 16:38:01 -08:00

23 lines
659 B
C#

//
// 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.Security.Contracts
{
/// <summary>
/// a class for storing various credential properties
/// </summary>
public class CredentialInfo
{
public int Id { get; set; }
public string Identity { get; set; }
public string Name { get; set; }
public DateTime DateLastModified { get; set; }
public DateTime CreateDate { get; set; }
public string ProviderName { get; set; }
}
}