yavsc/Yavsc/Models/Market/Catalog.cs

9 lines
207 B
C#
Raw Normal View History

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; }
}
2017-05-02 13:10:23 +02:00
}