Class FolderContentsResponseModel
Response model containing the contents of a folder in the WebReportDesigner storage system.
Inheritance
Namespace: Telerik.WebReportDesigner.Services.Models
Assembly: Telerik.WebReportDesigner.Services.dll
Syntax
public class FolderContentsResponseModel
Remarks
Used by folder listing operations in the Assets Manager to organize and display hierarchical folder structures with separate collections for subfolders and files.
Constructors
FolderContentsResponseModel()
Declaration
public FolderContentsResponseModel()
Properties
Files
Gets or sets the collection of files contained within the requested folder.
Declaration
public IEnumerable<ResourceFileModel> Files { get; set; }
Property Value
|
System.Collections.Generic.IEnumerable<ResourceFileModel>
|
Remarks
Includes file metadata such as names, sizes, URIs, and timestamps for file management operations in the storage system.
Folders
Gets or sets the collection of subfolders contained within the requested folder.
Declaration
public IEnumerable<ResourceFolderModel> Folders { get; set; }
Property Value
|
System.Collections.Generic.IEnumerable<ResourceFolderModel>
|
Remarks
Provides folder hierarchy information including names, URIs, and metadata for navigation purposes in the Assets Manager.