CodeLiturgy.Dashboard/BlueWest.Data.Capital/Company/Product.cs

13 lines
247 B
C#

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