< Summary

Class:SharpHoundCommonLib.OutputTypes.MetaTag
Assembly:SharpHoundCommonLib
File(s):D:\a\SharpHoundCommon\SharpHoundCommon\src\CommonLib\OutputTypes\MetaTag.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:13
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0

File(s)

D:\a\SharpHoundCommon\SharpHoundCommon\src\CommonLib\OutputTypes\MetaTag.cs

#LineLine coverage
 1using System.Runtime.Serialization;
 2
 3namespace SharpHoundCommonLib.OutputTypes
 4{
 5    [DataContract]
 6    public class MetaTag
 7    {
 08        [DataMember(Name = "methods")] public long CollectionMethods { get; set; }
 09        [DataMember(Name = "type")] public string DataType { get; set; }
 010        [DataMember(Name = "count")] public long Count { get; set; }
 011        [DataMember(Name = "version")] public int Version { get; set; }
 12    }
 13}