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

18 lines
306 B
C#
Raw Normal View History

2022-08-22 00:14:50 +03:00
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()
{
}
}
}