aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Common/SQL/RemoteSqlCommand.cs
blob: 95f94ad0878df7db1e5a6fec330eae9f9824b729 (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;

namespace Tango.FSE.Common.SQL
{
    public class RemoteSqlCommand
    {
        public RemoteSqlCommandMode Mode { get; set; }
        public String SQL { get; set; }
        public int Timeout { get; set; }

        public RemoteSqlCommand()
        {
            Timeout = 30;
        }
    }
}