using System.Collections.Generic; namespace Erp.SqlQueryManager.Application.Contracts; /// /// Combined DTO for Object Explorer containing all SQL objects /// public class SqlObjectExplorerDto { /// /// SQL Queries /// public List Queries { get; set; } = new(); /// /// Stored Procedures /// public List StoredProcedures { get; set; } = new(); /// /// Views /// public List Views { get; set; } = new(); /// /// Functions /// public List Functions { get; set; } = new(); /// /// Database Tables /// public List Tables { get; set; } = new(); /// /// Query Templates /// public List Templates { get; set; } = new(); }