From 913d6c652d7caf3d064aaa5119876c52be50e6b5 Mon Sep 17 00:00:00 2001 From: Basil Kotov Date: Mon, 18 Nov 2024 13:06:16 +0100 Subject: [PATCH] add userId to SeoSearchCriteria (#228) --- src/VirtoCommerce.CoreModule.Core/Seo/SeoSearchCriteria.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/VirtoCommerce.CoreModule.Core/Seo/SeoSearchCriteria.cs b/src/VirtoCommerce.CoreModule.Core/Seo/SeoSearchCriteria.cs index ad508ff6..22e88673 100644 --- a/src/VirtoCommerce.CoreModule.Core/Seo/SeoSearchCriteria.cs +++ b/src/VirtoCommerce.CoreModule.Core/Seo/SeoSearchCriteria.cs @@ -4,6 +4,7 @@ namespace VirtoCommerce.CoreModule.Core.Seo { public class SeoSearchCriteria : SearchCriteriaBase { + public string UserId { get; set; } public string Slug { get; set; } public string StoreId { get; set; } public string Permalink { get; set; }