16 lines
391 B
C#
16 lines
391 B
C#
using System.Collections.Generic;
|
|
using MapTo;
|
|
|
|
namespace BlueWest.Data
|
|
{
|
|
[MapFrom(new []{typeof(IndustryCreate), typeof(IndustryUpdate)})]
|
|
public partial class Industry
|
|
{
|
|
public int Id { get; set; }
|
|
public string IndustryName { get; set; }
|
|
public Industry IndustryParent { get; set; }
|
|
public List<Industry> IndustryChilds { get; set; }
|
|
}
|
|
}
|
|
|