Files
BeWoPlaner/SharedLauncher/Update/ApplyFileEventArgs.cs

21 lines
448 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BS.SharedLauncher.Update
{
public class ApplyFileEventArgs : EventArgs
{
public string Name { get; set; }
public string AbsolutePath { get; set; }
public ApplyFileEventArgs(string name, string path)
{
Name = name;
AbsolutePath = path;
}
}
}