mirror of
https://github.com/AntonyCorbett/JWLMerge
synced 2026-01-16 23:04:47 -05:00
15 lines
262 B
C#
15 lines
262 B
C#
namespace JWLMerge.BackupFileServices.Events
|
|
{
|
|
using System;
|
|
|
|
public class ProgressEventArgs : EventArgs
|
|
{
|
|
public ProgressEventArgs(string msg)
|
|
{
|
|
Message = msg;
|
|
}
|
|
|
|
public string Message { get; }
|
|
}
|
|
}
|