Class ModelSearchCriteria<T>
Criteria for searching models in the registry.
public class ModelSearchCriteria<T>
Type Parameters
TThe numeric data type used for calculations.
- Inheritance
-
ModelSearchCriteria<T>
- Inherited Members
Properties
CreatedAfter
Gets or sets the created after date filter.
public DateTime? CreatedAfter { get; set; }
Property Value
CreatedBefore
Gets or sets the created before date filter.
public DateTime? CreatedBefore { get; set; }
Property Value
MaxVersion
Gets or sets the maximum version.
public int? MaxVersion { get; set; }
Property Value
- int?
MinVersion
Gets or sets the minimum version.
public int? MinVersion { get; set; }
Property Value
- int?
NamePattern
Gets or sets the name pattern to match.
public string? NamePattern { get; set; }
Property Value
Stage
Gets or sets the stage to filter by.
public ModelStage? Stage { get; set; }
Property Value
Tags
Gets or sets the tags to filter by.
public Dictionary<string, string>? Tags { get; set; }