17 lines
382 B
C#
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; }
|
|
}
|
|
}
|