Class FolderHasContentsResponseModel
Response model that indicates whether a folder contains any files or subfolders, used for efficient folder management and UI optimization.
Inheritance
Namespace: Telerik.WebReportDesigner.Services.Models
Assembly: Telerik.WebReportDesigner.Services.dll
Syntax
public class FolderHasContentsResponseModel
Remarks
This lightweight model is used to check folder contents without retrieving the full folder listing, optimizing UI rendering performance in hierarchical folder structures.
Constructors
FolderHasContentsResponseModel()
Declaration
public FolderHasContentsResponseModel()
Properties
HasContents
Gets or sets a value indicating whether the folder contains any files or subfolders.
Declaration
public bool HasContents { get; set; }
Property Value
|
System.Boolean
|
Remarks
Returns true if the folder has at least one file or subfolder, false if empty. Used for determining whether to display folder expansion indicators in the UI.