using System.Collections.Generic; namespace MAX.Models { public class Network { public int Id { get; set; } public string Name { get; set; } public List Products { get; set; } = new List(); } }