namespace Inspectron.Ringbuffer
{
public class RingbufferConfiguration
{
///
/// How many images should be present in Good folder
/// After reaching this amount older images will be deleted
///
public int MaxAmountOfGoodImages { get; set; }
///
/// How many images should be present in Bad folder
/// After reaching this amount older images will be deleted
///
public int MaxAmountOfBadImages { get; set; }
///
/// If enabled folder structure will be like "Good\MyProduct\001.bmp
/// If disabled folder structure will be like "MyProduct\Good\001.bmp
///
public bool ProductFirst { get; set; }
}
}