Class ResourceFolderModel
A tree node structure used for representing a folder hierarchy, which contains the required data to display a folder and its parent folder identifier
Namespace: Telerik.WebReportDesigner.Services.Models
Assembly: Telerik.WebReportDesigner.Services.dll
Syntax
public class ResourceFolderModel : ResourceModelBase
Constructors
ResourceFolderModel()
Declaration
public ResourceFolderModel()
Properties
HasSubFolders
Gets or sets a value, indicating if the folder has subfolders
Declaration
public bool HasSubFolders { get; set; }
Property Value
System.Boolean
|
Name
Gets or sets the name of the folder
Declaration
public string Name { get; set; }
Property Value
System.String
|
ParentUri
Gets or sets the unique resource identifier (URI) of the parent of the folder For the top-most folder this should be null or empty string
Declaration
public string ParentUri { get; set; }
Property Value
System.String
|