13 lines
No EOL
303 B
C#
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;
|
|
}
|
|
}
|
|
} |