This commit is contained in:
2016-11-30 16:45:37 +01:00
parent a7fd4145a7
commit 378b7b6d24
5 changed files with 86 additions and 55 deletions

View File

@ -0,0 +1,9 @@
namespace Yavsc.Models.FileSystem
{
public class FileRecievedInfo
{
public string DestDir { get; set; }
public string FileName { get; set; }
public bool Overriden { get; set; }
}
}