This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
2021-05-21 18:28:21 +02:00

16 lines
375 B
C#

using System.Collections.Generic;
namespace Oqtane.Models
{
public class SqlQuery
{
/// <summary>
/// Reference to the <see cref="Tenant"/> this belongs to
/// </summary>
public int TenantId { get; set; }
public string Query { get; set; }
public List<Dictionary<string, string>> Results { get; set; }
}
}