namespace Inspectron.Ringbuffer
{
public class RingbufferPathConfiguration
{
///
/// 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; }
///
/// Where to store images
/// Supports $PRODUCT$ mark to put product name into its place
/// Supports $GOODBAD$ mark to put product quality into its place
///
public string PathFormat { get; set; }
///
/// Specifies which part of the path should be checked for maximum files
///
public int GroupPartId { get; set; }
///
/// Ringbuffer's root directory
///
public string RootDirectory { get; set; } = "./";
}
}