Files
deployutils/ConfMan.IOB.Core/RedisPub.cs
T
Samuele Locatelli 161c57ffde ConfIOB:
-aggiunta progetto originale (WEB) x conversione CONF
2022-12-28 11:34:38 +01:00

21 lines
469 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfMan.IOB.Core
{
/// <summary>
/// Classe setup comunicazione server REDIS
/// </summary>
public class RedisPub
{
/// <summary>
/// Minimo delta in sec x considerare variazioni informazioni inviate ad IOB-MAN via redis
/// </summary>
public int MinDeltaSec { get; set; } = 2;
}
}