diff --git a/src/Thycotic.SecretServer/classes/metadata/History.cs b/src/Thycotic.SecretServer/classes/metadata/History.cs index 8dc78fd0..735d4052 100644 --- a/src/Thycotic.SecretServer/classes/metadata/History.cs +++ b/src/Thycotic.SecretServer/classes/metadata/History.cs @@ -29,5 +29,6 @@ public class History public double ValueNumber { get; set; } public string ValueString { get; set; } public string ValueUserDisplayName { get; set; } + public bool containsPersonalInformation { get; set; } } } \ No newline at end of file diff --git a/src/Thycotic.SecretServer/classes/metadata/Summary.cs b/src/Thycotic.SecretServer/classes/metadata/Summary.cs index 0b0c85ae..04435a40 100644 --- a/src/Thycotic.SecretServer/classes/metadata/Summary.cs +++ b/src/Thycotic.SecretServer/classes/metadata/Summary.cs @@ -29,5 +29,6 @@ public class Summary public int ValueNumber { get; set; } public string ValueString { get; set; } public string ValueUserDisplayName { get; set; } + public bool containsPersonalInformation { get; set; } } } \ No newline at end of file diff --git a/src/Thycotic.SecretServer/classes/secret-hooks/Summary.cs b/src/Thycotic.SecretServer/classes/secret-hooks/Summary.cs index 88731890..be6a88e2 100644 --- a/src/Thycotic.SecretServer/classes/secret-hooks/Summary.cs +++ b/src/Thycotic.SecretServer/classes/secret-hooks/Summary.cs @@ -14,6 +14,7 @@ public class Summary public string PrePostOption { get; set; } public string ScriptName { get; set; } public string ScriptTypeName { get; set; } + public int scriptID { get; set; } public int SecretHookId { get; set; } public int SortOrder { get; set; } public bool Status { get; set; }