21 lines
484 B
C#
21 lines
484 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IOB_UT_NEXT.Config.Base
|
|
{
|
|
/// <summary>
|
|
/// Setup comunicazione con IOB-MAN tramite REDIS
|
|
/// </summary>
|
|
public class IobManDto
|
|
{
|
|
|
|
/// <summary>
|
|
/// Minimo delta in sec x considerare variazioni informazioni inviate ad IOB-MAN via redis
|
|
/// </summary>
|
|
public int MinDeltaSec { get; set; } = 2;
|
|
}
|
|
}
|