yavsc/Yavsc/Models/FileSystem/FileRecievedInfo.cs

10 lines
286 B
C#
Raw Normal View History

2016-11-30 16:45:37 +01:00
namespace Yavsc.Models.FileSystem
{
public class FileRecievedInfo
{
2017-02-02 12:00:03 +01:00
public bool Success { get; set; }
2016-11-30 16:45:37 +01:00
public string DestDir { get; set; }
public string FileName { get; set; }
public bool Overriden { get; set; }
}
}