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

18 lines
306 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; }
public Product()
{
}
}
}