Class UpdateTargetInput
Input data transfer object for updating target items associated with a specific context.
Contains the context identifier and an array of target items to be updated.
Inherited Members
Namespace: Serenity.AssetPrefetcher.Application.UseCases.Dto
Assembly: Serenity.AssetPrefetcher.Application.dll
Syntax
public class UpdateTargetInput
Constructors
UpdateTargetInput()
Declaration
public UpdateTargetInput()
Properties
ContextId
Declaration
public string ContextId { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The context identifier for which the target items are to be updated. |
Target
Declaration
public TargetItem[] Target { get; set; }
Property Value
| Type | Description |
|---|---|
| TargetItem[] | Array of target items to be updated for the specified context. |