mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-04 16:49:36 +00:00
17 lines
354 B
C#
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;
|
|
}
|
|
} |