mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-11 10:45:00 +00:00
feature: updated folder structure
- moved files into folders to match their current namespace - did not update any namespaces to maintain backward compatibility
This commit is contained in:
9
src/PepperDash.Essentials.Core/File/FileEventArgs.cs
Normal file
9
src/PepperDash.Essentials.Core/File/FileEventArgs.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace PepperDash.Essentials.Core
|
||||
{
|
||||
public class FileEventArgs
|
||||
{
|
||||
public FileEventArgs(string data) { Data = data; }
|
||||
public string Data { get; private set; } // readonly
|
||||
|
||||
}
|
||||
}
|
||||
@@ -269,10 +269,4 @@ namespace PepperDash.Essentials.Core
|
||||
}
|
||||
|
||||
}
|
||||
public class FileEventArgs
|
||||
{
|
||||
public FileEventArgs(string data) { Data = data; }
|
||||
public string Data { get; private set; } // readonly
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user