Web API for the bulk printing desktop application.

Network.cs 254B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace MAX.Models
  3. {
  4. public class Network
  5. {
  6. public int Id { get; set; }
  7. public string Name { get; set; }
  8. public List<Product> Products { get; set; } = new List<Product>();
  9. }
  10. }