2025-05-18 01:04:31 +08:00

21 lines
575 B
C#

// ***********************************************************************
// Assembly : Unity
// Author : Kimch
// Created :
//
// Last Modified By : Kimch
// Last Modified On :
// ***********************************************************************
// <copyright file= "IColumn" company=""></copyright>
// <summary></summary>
// ***********************************************************************
using System;
public interface IColumn
{
string name { get; }
int index { get; }
Type type { get; }
Table table { get; }
}