mirror of
https://github.com/AntonyCorbett/JWLMerge
synced 2026-09-13 02:44:57 -04:00
13 lines
223 B
C#
13 lines
223 B
C#
using System;
|
|
|
|
namespace JWLMerge.BackupFileServices.Events;
|
|
|
|
public class ProgressEventArgs : EventArgs
|
|
{
|
|
public ProgressEventArgs(string msg)
|
|
{
|
|
Message = msg;
|
|
}
|
|
|
|
public string Message { get; }
|
|
} |