Skip to content
This repository has been archived by the owner on Dec 21, 2024. It is now read-only.

Commit

Permalink
Convert public field to public property
Browse files Browse the repository at this point in the history
  • Loading branch information
StrangeRanger committed Mar 14, 2024
1 parent 28b4175 commit 24c5839
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ActiveDirectoryQuerier/Queries/CustomQueries.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ namespace ActiveDirectoryQuerier.Queries;
public class CustomQueries
{
public List<Query> Queries { get; private set; } = new();

public string CustomQueryFileLocation = "";
public string CustomQueryFileLocation { get; set; } = string.Empty;

/// <summary>
/// This a variable for feeding options to the Json serializer
Expand Down

0 comments on commit 24c5839

Please sign in to comment.