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:
Aditya Bist
2018-07-13 21:43:59 -07:00
committed by Karl Burtram
parent 626ce35440
commit c0e5225187
5 changed files with 77 additions and 6 deletions

View File

@@ -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; }
}
}