You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
546 B
19 lines
546 B
using System.Collections.Generic;
|
|
|
|
namespace Teso_API.Models
|
|
{
|
|
public class SmartSearch
|
|
{
|
|
public string Name { get; set; }
|
|
public string Type { get; set; }
|
|
public string BusinessLat { get; set; }
|
|
public string BusinessLng { get; set; }
|
|
public string BusinessId { get; set; }
|
|
public List<ProductBusinessId> ProductBusinessIds { get; set; }
|
|
}
|
|
public class ProductBusinessId
|
|
{
|
|
public string ProductId { get; set; }
|
|
public string BusinessId { get; set; }
|
|
}
|
|
}
|
|
|