Skip to content

Commit

Permalink
feat: collector version number meta tag
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasBK committed Jul 25, 2024
1 parent 395bffc commit 9da4030
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/CommonLib/OutputTypes/MetaTag.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ namespace SharpHoundCommonLib.OutputTypes
[DataContract]
public class MetaTag
{
[DataMember(Name="methods")] public long CollectionMethods { get; set; }
[DataMember(Name="type")] public string DataType { get; set; }
[DataMember(Name="count")] public long Count { get; set; }
[DataMember(Name="version")] public int Version { get; set; }
[DataMember(Name = "methods")] public long CollectionMethods { get; set; }
[DataMember(Name = "type")] public string DataType { get; set; }
[DataMember(Name = "count")] public long Count { get; set; }
[DataMember(Name = "version")] public int Version { get; set; }
[DataMember(Name = "collectorversion")] public string CollectorVersion { get; set; }
}
}

0 comments on commit 9da4030

Please sign in to comment.