Table of Contents

Struct PreparedListResult<TModel>

Namespace
Dynamicweb.CoreUI.Data
Assembly
Dynamicweb.CoreUI.dll
public readonly record struct PreparedListResult<TModel> : IEquatable<PreparedListResult<TModel>>

Type Parameters

TModel
Implements
Inherited Members

Constructors

PreparedListResult(IEnumerable<TModel>?, int?)

public PreparedListResult(IEnumerable<TModel>? Models, int? TotalCount)

Parameters

Models IEnumerable<TModel>
TotalCount int?

Properties

Models

public IEnumerable<TModel>? Models { get; init; }

Property Value

IEnumerable<TModel>

TotalCount

public int? TotalCount { get; init; }

Property Value

int?
To top