2022-08-23 19:48:16 +03:00
|
|
|
using MapTo;
|
2022-08-22 00:14:50 +03:00
|
|
|
|
|
|
|
namespace BlueWest.Data
|
|
|
|
{
|
2022-08-23 19:48:16 +03:00
|
|
|
[MapFrom(typeof(Product))]
|
|
|
|
public partial class ProductUpdate
|
2022-08-22 00:14:50 +03:00
|
|
|
{
|
|
|
|
public string Name { get; set; }
|
2022-08-23 19:48:16 +03:00
|
|
|
public string Size { get; set; }
|
2022-08-22 00:14:50 +03:00
|
|
|
public Industry Industry { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|