Files
BeWoPlaner/SharedLauncher/Update/FileEventArgs.cs
2022-09-14 10:57:51 +02:00

21 lines
438 B
C#

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