check point
This commit is contained in:
16
framework/Inspectron.Ringbuffer/SaveCandidate.cs
Normal file
16
framework/Inspectron.Ringbuffer/SaveCandidate.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Inspectron.Ringbuffer.Interfaces;
|
||||
|
||||
namespace Inspectron.Ringbuffer
|
||||
{
|
||||
public class SaveCandidate
|
||||
{
|
||||
public SaveCandidate(IFileIdentity fileIdentity, string targetDirectory)
|
||||
{
|
||||
FileIdentity = fileIdentity;
|
||||
TargetDirectory = targetDirectory;
|
||||
}
|
||||
|
||||
public IFileIdentity FileIdentity { get; set; }
|
||||
public string TargetDirectory { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user