using System.Collections.Generic;
namespace Oqtane.Models
{
public class SqlQuery
{
///
/// Reference to the this belongs to
///
public int TenantId { get; set; }
public string DBType { get; set; }
public string DBConnectionString { get; set; }
public string Query { get; set; }
public List> Results { get; set; }
}
}