mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 10:09:24 +00:00
12 lines
258 B
C#
12 lines
258 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Oqtane.Models
|
|
{
|
|
public class SqlQuery
|
|
{
|
|
public int TenantId { get; set; }
|
|
public string Query { get; set; }
|
|
public List<Dictionary<string, string>> Results { get; set; }
|
|
}
|
|
}
|