- add type of property

ImproveDataHandling_#25
Simon G 5 years ago
parent 4ce5e0914e
commit b693b100e8
  1. 4
      GBase/GBaseColumn.cs

@ -16,12 +16,14 @@ namespace GBase
/// <summary>
/// A column of a <see cref="IGBaseTable"/>
/// </summary>
public GBaseColumn(string name)
public GBaseColumn(string name, Type type)
{
Name = name;
Type = type;
}
public string Name { get; }
public Type Type { get; }
/// <summary>
/// The <see cref="IAsyncDisposable.DisposeAsync"/> method

Loading…
Cancel
Save