Updated model
This commit is contained in:
parent
ffbc987390
commit
f0519e9f84
|
|
@ -9,11 +9,23 @@ namespace Elsa.Activities.File.Models
|
|||
{
|
||||
public class FileSystemChanged
|
||||
{
|
||||
public FileSystemChanged()
|
||||
{ }
|
||||
|
||||
public FileSystemChanged(WatcherChangeTypes changeType, string directory, string fileName, string fullPath)
|
||||
{
|
||||
ChangeType = changeType;
|
||||
Directory = directory;
|
||||
FileName = fileName;
|
||||
FullPath = fullPath;
|
||||
}
|
||||
|
||||
public WatcherChangeTypes ChangeType { get; set; }
|
||||
|
||||
public string Directory { get; set; }
|
||||
|
||||
public string FileName { get; set; }
|
||||
|
||||
public string FullPath { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue