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

Commit

Permalink
Cleaned up some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
J0seph0 committed Jan 14, 2024
1 parent 065af67 commit c13a847
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 2 additions & 3 deletions FAFB-PowerShell-Tool/PSSaveOptions.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using FAFB_PowerShell_Tool.PowerShell;
using FAFB_PowerShell_Tool.PowerShell.Commands;
using FAFB_PowerShell_Tool.PowerShell.Commands;
using System;

namespace FAFB_PowerShell_Tool
Expand All @@ -15,9 +14,9 @@ public class PSSaveOptions
/// </summary>
public PSSaveOptions() { }
/// <summary>
/// This would be to output the query to a csv
/// This would be to output the query to a csv, will need to eventually adapt to a guicommand as well most likely
/// </summary>
/// <param name="results"> This is a ReturnValues object that houses the output after executing a command specificall results.StdOut </param>
/// <param name="commandString"> This is the internal command that we want to output to a csv </param>
public InternalCommand OutputToCSV(InternalCommand commandString)
{
//Checks to see if the parameters are null,
Expand Down
1 change: 0 additions & 1 deletion FAFB-PowerShell-Tool/PowerShell/Commands/ICommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
public interface ICommand
{
string CommandName { get; }
//want to change this into a list
string[]? Parameters { get; set; }
string CommandString { get; }
}

0 comments on commit c13a847

Please # to comment.