WeeXnesSuite/Release_Tool/file.cs
2022-04-27 00:47:25 +02:00

13 lines
No EOL
303 B
C#

namespace Release_Tool
{
public class file
{
public string path { get; set; }
public string newfilename { get; set; }
public file(string _path, string _newfilename)
{
this.path = _path;
this.newfilename = _newfilename;
}
}
}