- 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> /// <summary>
/// A column of a <see cref="IGBaseTable"/> /// A column of a <see cref="IGBaseTable"/>
/// </summary> /// </summary>
public GBaseColumn(string name) public GBaseColumn(string name, Type type)
{ {
Name = name; Name = name;
Type = type;
} }
public string Name { get; } public string Name { get; }
public Type Type { get; }
/// <summary> /// <summary>
/// The <see cref="IAsyncDisposable.DisposeAsync"/> method /// The <see cref="IAsyncDisposable.DisposeAsync"/> method

Loading…
Cancel
Save