mirror of
https://github.com/kwsch/pkNX.git
synced 2026-04-30 09:47:15 -05:00
11 lines
240 B
C#
11 lines
240 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; }
|
|
}
|
|
} |