Interface IFolderEntity
Defines an interface that all immediate children of a repository folder must implement.
Namespace: Nevatech.Vsb.Repository.Entities
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public interface IFolderEntity
Properties
FolderId
Gets or sets an identifier of folder that entity belongs to.
Declaration
int? FolderId { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Int32> |
FriendlyName
Gets or sets the display name of the entity.
Declaration
string FriendlyName { get; set; }
Property Value
Type | Description |
---|---|
String |
Id
Gets or sets the entity id.
Declaration
int Id { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Key
Gets or sets the unique identifier of the object.
Declaration
Guid Key { get; set; }
Property Value
Type | Description |
---|---|
Guid |
ObjectType
Gets object type identifier.
Declaration
EntityType ObjectType { get; }
Property Value
Type | Description |
---|---|
EntityType |