Skip to content

Commit

Permalink
chore: fix older compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
rvazarkar committed Feb 11, 2025
1 parent e96438f commit cf03ca9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/CommonLib/OutputTypes/Computer.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Collections.Generic;
using System;
using System.Collections.Generic;

namespace SharpHoundCommonLib.OutputTypes {
/// <summary>
Expand All @@ -13,7 +14,7 @@ public class Computer : OutputBase {
public SessionAPIResult Sessions { get; set; } = new();
public SessionAPIResult PrivilegedSessions { get; set; } = new();
public SessionAPIResult RegistrySessions { get; set; } = new();
public LocalGroupAPIResult[] LocalGroups { get; set; } = [];
public LocalGroupAPIResult[] LocalGroups { get; set; } = Array.Empty<LocalGroupAPIResult>();
public UserRightsAssignmentAPIResult[] UserRights { get; set; } = [];
public DCRegistryData DCRegistryData { get; set; } = new();
public ComputerStatus Status { get; set; }
Expand Down

0 comments on commit cf03ca9

Please sign in to comment.