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

14 lines
254 B
C#
Raw Normal View History

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 ProductCreate
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; }
}
}