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

16 lines
291 B
C#
Raw Normal View History

2022-09-06 01:37:52 +03:00
using MapTo;
namespace BlueWest.Data
{
[MapFrom(typeof(Product))]
public partial class ProductUnique
{
public int Id { get; set; }
public string Name { get; set; }
public string Size { get; set; }
public Industry Industry { get; set; }
}
}