Interface IDynamicListItem<TViewModel>
Represents an item stored in a DynamicList<TViewModel, TOptions> when the type of the view model needs to be known.
Inherited Members
Namespace: DynamicVML
Assembly: DynamicVML.dll
Syntax
public interface IDynamicListItem<out TViewModel> : IDynamicListItem where TViewModel : class
Type Parameters
Name | Description |
---|---|
TViewModel |
Properties
| Improve this Doc View SourceViewModel
Gets or sets the view model stored in this item.
Declaration
TViewModel ViewModel { get; }
Property Value
Type | Description |
---|---|
TViewModel | The view model. |