Files
BeWoPlaner/SharedLauncher/Update/ApplyFileEventArgs.cs

19 lines
369 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 RelativePath { get; set; }
public ApplyFileEventArgs(string name)
{
RelativePath = name;
}
}
}