Class ItemEntity
Base class for items that represent an entity with an IdMaster, status, version name, and a file attached to it.
Inherited Members
Namespace: DataWeb.Structure
Assembly: DataWeb.Core.dll
Syntax
public abstract class ItemEntity
Properties
File
The file attached to the item entity.
Declaration
public File File { get; set; }
Property Value
Type | Description |
---|---|
File |
FileCode
The code of the file attached to the item entity.
Declaration
public string FileCode { get; set; }
Property Value
Type | Description |
---|---|
string |
IdMaster
Gets or sets the unique identifier.
Declaration
public string IdMaster { get; set; }
Property Value
Type | Description |
---|---|
string |
IsFile
Indicates if the item entity has a file attached to it.
Declaration
public bool IsFile { get; set; }
Property Value
Type | Description |
---|---|
bool |
Status
The current status of the item entity.
Declaration
public ItemStatus Status { get; set; }
Property Value
Type | Description |
---|---|
ItemStatus |
VersionName
The name of the version of the item entity.
Declaration
public string VersionName { get; set; }
Property Value
Type | Description |
---|---|
string |