2022-08-23 19:48:16 +03:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using MapTo;
|
|
|
|
|
2022-08-22 00:14:50 +03:00
|
|
|
namespace BlueWest.Data
|
|
|
|
{
|
2022-08-23 19:48:16 +03:00
|
|
|
[MapFrom(new []{typeof(IndustryCreate), typeof(IndustryUpdate)})]
|
2022-08-22 00:14:50 +03:00
|
|
|
public partial class Industry
|
|
|
|
{
|
|
|
|
public int Id { get; set; }
|
2022-08-23 19:48:16 +03:00
|
|
|
public string IndustryName { get; set; }
|
|
|
|
public Industry IndustryParent { get; set; }
|
|
|
|
public List<Industry> IndustryChilds { get; set; }
|
2022-08-22 00:14:50 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|