21 lines
464 B
C#
21 lines
464 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EgwConf.Iob
|
|
{
|
|
/// <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;
|
|
}
|
|
}
|