pkNX/pkNX.Containers/ContainerHandler/FileProgressedEventArgs.cs
Kurt 2578ba073c Refactoring
File scoped namespaces for all lib projects
netstandard2.0 => net6; now uniform. bye netframework!
2022-10-01 17:08:17 -07:00

11 lines
213 B
C#

using System;
namespace pkNX.Containers;
public class FileProgressedEventArgs : EventArgs
{
public int Current { get; set; }
public int Total { get; set; }
public string? CurrentFile { get; set; }
}