Skip to content

Commit

Permalink
fix: change domain property to domain sid and add domainsid property …
Browse files Browse the repository at this point in the history
…to rootca
  • Loading branch information
urangel committed Oct 11, 2023
1 parent f9b904f commit 9553455
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/CommonLib/OutputTypes/EnterpriseCA.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
public class EnterpriseCA : OutputBase
{
public string Domain { get; set; }
public string DomainSID { get; set; }
public string HostingComputer { get; set; }
public CARegistryData CARegistryData { get; set; }
public TypedPrincipal[] EnabledCertTemplates { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion src/CommonLib/OutputTypes/NTAuthStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
public class NTAuthStore : OutputBase
{
public string Domain { get; set; }
public string DomainSID { get; set; }
}
}
1 change: 1 addition & 0 deletions src/CommonLib/OutputTypes/RootCA.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
{
public class RootCA : OutputBase
{
public string DomainSID { get; set; }
}
}

0 comments on commit 9553455

Please sign in to comment.