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; } } }