Web API for the bulk printing desktop application.
| 1234567891011121314 |
- using System.Collections.Generic;
- namespace MAX.Models
- {
- public class Network
- {
- public int Id { get; set; }
- public string Name { get; set; }
- public List<Product> Products { get; set; } = new List<Product>();
- }
- }
|