mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-12 11:08:31 -05:00
added handler to fetch credentials (#656)
* added handler to fetch credentials * added credentials to security service rather than agent service
This commit is contained in:
committed by
Karl Burtram
parent
626ce35440
commit
c0e5225187
@@ -14,11 +14,11 @@ namespace Microsoft.SqlTools.ServiceLayer.Security.Contracts
|
||||
/// </summary>
|
||||
public class CredentialInfo
|
||||
{
|
||||
public int Id { get; }
|
||||
public int Id { get; set; }
|
||||
public string Identity { get; set; }
|
||||
public string Name { get; set; }
|
||||
public DateTime DateLastModified { get; }
|
||||
public DateTime CreateDate { get; }
|
||||
public string ProviderName { get; set; }
|
||||
public DateTime DateLastModified { get; set; }
|
||||
public DateTime CreateDate { get; set; }
|
||||
public string ProviderName { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user