Aggiunta filtri per max record e

tempo aggiornamento
This commit is contained in:
zaccaria.majid
2022-09-15 17:28:26 +02:00
parent 1efd5f5a4b
commit f5bbcae0db
3 changed files with 88 additions and 0 deletions
+4
View File
@@ -16,6 +16,7 @@
public bool LiveUpdate { get; set; } = true;
public int MaxRecord { get; set; } = 100;
public int TempoAgg { get; set; } = 2000;
#endregion Public Properties
@@ -37,6 +38,9 @@
if (MaxRecord != item.MaxRecord)
return false;
if (TempoAgg != item.TempoAgg)
return false;
return true;
}