using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.PPC.Shared.SQL
{
/// <summary>
/// Represents a <see cref="RemoteSqlDataSet"/> column.
/// </summary>
public class RemoteSqlColumn
{
/// <summary>
/// Gets or sets the column name.
/// </summary>
public String Name { get; set; }
/// <summary>
/// Gets or sets the column index.
/// </summary>
public int Index { get; set; }