2016-05-17 18:22:18 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2016-06-14 03:37:57 +02:00
|
|
|
namespace Yavsc.Models.Market {
|
2016-05-17 18:22:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
public class Catalog {
|
|
|
|
|
public List<Product> Products { get; set; }
|
|
|
|
|
public List<Service> Services { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|