using System; using System.Collections.Generic; using System.Text; namespace ConsoleApp4 { public class Distributor { public int Id { get; set; } public ICollection<StreetAddress> ShippingCenters { get; set; } } }