17 lines
319 B
C#
17 lines
319 B
C#
|
|
namespace SmartFTP.Logic
|
|
{
|
|
public class FTPDataStruct
|
|
{
|
|
public string fileName;
|
|
public string localFileName;
|
|
public int id;
|
|
public FTPDataStruct()
|
|
{
|
|
fileName = string.Empty;
|
|
localFileName = string.Empty;
|
|
id = 0;
|
|
}
|
|
}
|
|
}
|