Files
2017-03-08 11:21:27 +01:00

17 lines
382 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Nuvolar.Scanner.Module.CSharp
{
public class SimpleQuery
{
public string UserName { get; set; }
public string Password { get; set; }
public string Database { get; set; }
public string Query { get; set; }
}
}