check point
This commit is contained in:
25
framework/Inspectron.Ringbuffer/RingbufferConfiguration.cs
Normal file
25
framework/Inspectron.Ringbuffer/RingbufferConfiguration.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
namespace Inspectron.Ringbuffer
|
||||
{
|
||||
public class RingbufferConfiguration
|
||||
{
|
||||
/// <summary>
|
||||
/// How many images should be present in Good folder
|
||||
/// After reaching this amount older images will be deleted
|
||||
/// </summary>
|
||||
public int MaxAmountOfGoodImages { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// How many images should be present in Bad folder
|
||||
/// After reaching this amount older images will be deleted
|
||||
/// </summary>
|
||||
public int MaxAmountOfBadImages { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// If enabled folder structure will be like "Good\MyProduct\001.bmp
|
||||
/// If disabled folder structure will be like "MyProduct\Good\001.bmp
|
||||
/// </summary>
|
||||
public bool ProductFirst { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user