Class DataBlockSummary
- Namespace
- Datafication.Server.Core.Models
- Assembly
- Datafication.Server.Core.dll
Represents a summary of a registered DataBlock for list operations.
public class DataBlockSummary
- Inheritance
-
objectDataBlockSummary
Properties
ColumnCount
Gets or sets the number of columns in the DataBlock.
public int ColumnCount { get; set; }
Property Value
- int
Description
Gets or sets the description of the DataBlock.
public string? Description { get; set; }
Property Value
- string
Id
Gets or sets the unique identifier of the DataBlock.
public string Id { get; set; }
Property Value
- string
IsReadOnly
Gets or sets a value indicating whether the DataBlock is read-only.
public bool IsReadOnly { get; set; }
Property Value
- bool
LastAccessedAt
Gets or sets the date and time when the DataBlock was last accessed.
public DateTime? LastAccessedAt { get; set; }
Property Value
- DateTime?
Name
Gets or sets the display name of the DataBlock.
public string? Name { get; set; }
Property Value
- string
RegisteredAt
Gets or sets the date and time when the DataBlock was registered.
public DateTime RegisteredAt { get; set; }
Property Value
- DateTime
RowCount
Gets or sets the number of rows in the DataBlock.
public int RowCount { get; set; }
Property Value
- int
Tags
Gets or sets the tags associated with the DataBlock.
public List<string> Tags { get; set; }
Property Value
- List<string>