Class DataBlockSchemaResponse
- Namespace
- Datafication.Server.Core.Models
- Assembly
- Datafication.Server.Core.dll
Represents the schema information response for a DataBlock.
public class DataBlockSchemaResponse
- Inheritance
-
objectDataBlockSchemaResponse
Properties
ColumnCount
Gets or sets the number of columns in the DataBlock.
public int ColumnCount { get; set; }
Property Value
- int
Columns
Gets or sets the column information for the DataBlock.
public List<ColumnInfo> Columns { get; set; }
Property Value
- List<ColumnInfo>
Id
Gets or sets the unique identifier of the DataBlock.
public string Id { get; set; }
Property Value
- string
Name
Gets or sets the display name of the DataBlock.
public string? Name { get; set; }
Property Value
- string
RowCount
Gets or sets the number of rows in the DataBlock.
public int RowCount { get; set; }
Property Value
- int