< Summary

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

Metrics

MethodBranch coverage Cyclomatic complexity NPath complexity Sequence coverage
.ctor()100%100%

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3
 4namespace SharpHoundCommonLib.OutputTypes
 5{
 6    /// <summary>
 7    ///     Represents a base JSON object which other objects will inherit from.
 8    /// </summary>
 9    public class OutputBase
 10    {
 011        public Dictionary<string, object> Properties = new();
 012        public ACE[] Aces { get; set; } = Array.Empty<ACE>();
 013        public string ObjectIdentifier { get; set; }
 014        public bool IsDeleted { get; set; }
 015        public bool IsACLProtected { get; set; }
 016        public TypedPrincipal ContainedBy { get; set; }
 17    }
 18}