1b9252cb67
Update x gestioen metodo send Rest (da testare!!!)
16 lines
343 B
C#
16 lines
343 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Maat.Core
|
|
{
|
|
public class RestWaitConf
|
|
{
|
|
public int CallId { get; set; } = 0;
|
|
public double WaitTime { get; set; } = 0;
|
|
public DateTime NextExe { get; set; } = DateTime.Now;
|
|
}
|
|
}
|