15 lines
256 B
C#
15 lines
256 B
C#
namespace Yavsc.Abstract.FileSystem
|
|
{
|
|
public interface IFileReceivedInfo
|
|
{
|
|
|
|
string DestDir { get; set; }
|
|
|
|
string FileName { get; set; }
|
|
|
|
bool Overridden { get; set; }
|
|
|
|
bool QuotaOffense { get; set; }
|
|
}
|
|
}
|