Files
yavsc/Yavsc/Models/Market/Catalog.cs
2017-05-02 13:10:23 +02:00

10 lines
207 B
C#

using System.Collections.Generic;
namespace Yavsc.Models.Market {
public class Catalog {
public List<Product> Products { get; set; }
public List<Service> Services { get; set; }
}
}