using System.Collections.Generic; namespace BlueWest.Data { public partial class Product { public string Name { get; set; } public Industry Industry { get; set; } public List Seller { get; set; } } }