13 lines
229 B
C#
13 lines
229 B
C#
|
using MapTo;
|
||
|
|
||
|
namespace BlueWest.Data
|
||
|
{
|
||
|
[MapFrom(typeof(Industry))]
|
||
|
public partial class IndustryCreate
|
||
|
{
|
||
|
public string IndustryName { get; set; }
|
||
|
public Industry IndustryParent { get; set; }
|
||
|
}
|
||
|
}
|
||
|
|