ResourceModelBase
Abstract base class providing common properties for all resource models in the WebReportDesigner system.
Definition
Namespace:Telerik.WebReportDesigner.Services.Models
Assembly:Telerik.WebReportDesigner.Services.dll
Syntax:
public abstract class ResourceModelBase
Inheritance: objectResourceModelBase
Derived Classes:
Constructors
protected ResourceModelBase()
Properties
CreatedOn
DateTime
Gets or sets the creation timestamp of the resource.
public DateTime CreatedOn { get; set; }
Records when the resource was initially created, used for metadata tracking and resource management in the storage system.
ModifiedOn
DateTime
Gets or sets the last modification timestamp of the resource.
public DateTime ModifiedOn { get; set; }
Tracks the most recent modification time, enabling change detection and synchronization capabilities in the WebReportDesigner system.
Uri
string
Gets or sets the unique resource identifier (URI).
public string Uri { get; set; }
Provides the primary identifier for the resource within the WebReportDesigner storage system, used for referencing and accessing the resource across operations.