shopping-assistant-web-client/ShoppingAssistantWebClient.Web/Services/SearchService.cs
2023-11-20 15:48:48 +00:00

17 lines
354 B
C#

namespace ShoppingAssistantWebClient.Web.Services;
public class SearchService
{
public List<String> Products { get; set; }
public string firstMassage { get; set; }
public void SetProducts(List<String> products) {
Products = products;
}
public void SetFirstMassage(string massage) {
firstMassage = massage;
}
}