aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Shared/Events/PushEmulatedEventRequest.cs
blob: 3546c285f0f9f5d33376d324b6083548a0b665d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PMR.Diagnostics;

namespace Tango.PPC.Shared.Events
{
    public class PushEmulatedEventRequest
    {
        public Event Event { get; set; }
        public TimeSpan Timeout { get; set; }

        public PushEmulatedEventRequest()
        {
            Timeout = TimeSpan.FromSeconds(5);
        }
    }
}