15 lines
308 B
C#
15 lines
308 B
C#
namespace Props.Shop.Adafruit
|
|
{
|
|
public class Configuration
|
|
{
|
|
public int MinDownloadInterval { get; set; }
|
|
|
|
public float Similarity { get; set; }
|
|
|
|
public Configuration()
|
|
{
|
|
MinDownloadInterval = 5 * 60 * 1000;
|
|
Similarity = 0.8f;
|
|
}
|
|
}
|
|
} |