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

14 lines
254 B
C#

using MapTo;
namespace BlueWest.Data
{
[MapFrom(typeof(Product))]
public partial class ProductCreate
{
public string Name { get; set; }
public string Size { get; set; }
public Industry Industry { get; set; }
}
}