< Summary

Class:SharpHoundCommonLib.OutputTypes.OutputWrapper<T>
Assembly:SharpHoundCommonLib
File(s):D:\a\SharpHoundCommon\SharpHoundCommon\src\CommonLib\OutputTypes\OutputWrapper.cs
Covered lines:0
Uncovered lines:2
Coverable lines:2
Total lines:12
Line coverage:0% (0 of 2)
Covered branches:0
Total branches:0

File(s)

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

#LineLine coverage
 1using System.Collections.Generic;
 2using System.Runtime.Serialization;
 3
 4namespace SharpHoundCommonLib.OutputTypes
 5{
 6    [DataContract]
 7    public class OutputWrapper<T>
 8    {
 09        [DataMember(Name = "meta")] public MetaTag Meta { get; set; }
 010        [DataMember(Name = "data")] public List<T> Data { get; set; }
 11    }
 12}

Methods/Properties

Meta()
Data()