Class CommandLogSearchFilter
- Namespace
- Dynamicweb.CoreUI.Data.CommandLog
- Assembly
- Dynamicweb.CoreUI.dll
Represents an object used to filter results when getting command logs
public sealed class CommandLogSearchFilter
- Inheritance
-
CommandLogSearchFilter
- Inherited Members
Properties
OrderBy
Gets or sets order by ds column name
public string? OrderBy { get; init; }
Property Value
OrderByDirection
Gets or sets order by direction
public string? OrderByDirection { get; init; }
Property Value
Remarks
Supports "ASC" and "DESC"
PageNumber
Gets or sets page number for results
public int PageNumber { get; init; }
Property Value
PageSize
Get or sets amount of records retrived
public int PageSize { get; init; }
Property Value
SearchValue
Gets or sets value to be searched for command log id or model type
public string? SearchValue { get; init; }
Property Value
TimestampFrom
Gets or sets Timestamp from filter
public DateTime? TimestampFrom { get; init; }
Property Value
TimestampTo
Gets or sets Timestamp to filter
public DateTime? TimestampTo { get; init; }
Property Value
UserIds
Gets or sets user ids collection
public IEnumerable<int>? UserIds { get; init; }