Code cleanup

This commit is contained in:
Paul Schneider 2025-03-04 18:05:21 +00:00
commit 380f2314dc
14 changed files with 105 additions and 103 deletions

View file

@ -1,14 +1,14 @@
namespace Yavsc.Abstract.FileSystem
{
public interface IFileRecievedInfo
public interface IFileReceivedInfo
{
string DestDir { get; set; }
string FileName { get; set; }
bool Overriden { get; set; }
bool Overridden { get; set; }
bool QuotaOffensed { get; set; }
bool QuotaOffense { get; set; }
}
}