#region License // Copyright 2005-2019 Paul Kohler (https://github.com/paulkohler/minisqlquery). All rights reserved. // This source code is made available under the terms of the GNU Lesser General Public License v3.0 // https://github.com/paulkohler/minisqlquery/blob/master/LICENSE #endregion namespace MiniSqlQuery.Core { /// /// Interface for viewing table and view data. /// public interface IViewTable : IPerformTask, IQueryBatchProvider, INavigatableDocument { /// /// Gets a value indicating whether AutoReload. /// /// The auto reload. bool AutoReload { get; } /// /// Gets or sets TableName. /// /// The table name. string TableName { get; set; } /// /// Gets or sets Text of the window, i.e. the table name. /// /// The text of the window. string Text { get; set; } } }