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