Skip to content

Commit

Permalink
Fixed some formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomEngy committed Sep 29, 2024
1 parent 9977833 commit 8d239ce
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions VidCoder/Services/HandBrakeProxy/IScanProxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ namespace VidCoder.Services.HandBrakeProxy;
/// </summary>
public interface IScanProxy : IDisposable
{
/// <summary>
/// Fires when the scan progress is updated.
/// </summary>
event EventHandler<EventArgs<float>> ScanProgress;
/// <summary>
/// Fires when the scan progress is updated.
/// </summary>
event EventHandler<EventArgs<float>> ScanProgress;

/// <summary>
/// Fires when a scan has completed.
/// </summary>
event EventHandler<EventArgs<string>> ScanCompleted;
/// <summary>
/// Fires when a scan has completed.
/// </summary>
event EventHandler<EventArgs<string>> ScanCompleted;

void StartScan(string path, IAppLogger logger);
void StartScan(string path, IAppLogger logger);
}

0 comments on commit 8d239ce

Please sign in to comment.