2022-09-10 07:12:03 +03:00
|
|
|
using System;
|
2022-08-24 19:56:51 +03:00
|
|
|
using MapTo;
|
|
|
|
|
|
|
|
namespace BlueWest.Data
|
|
|
|
{
|
|
|
|
[MapFrom(typeof(Industry))]
|
|
|
|
public partial class IndustryUnique
|
|
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
|
|
public string IndustryName { get; set; }
|
|
|
|
public Industry IndustryParent { get; set; }
|
2022-09-10 07:12:03 +03:00
|
|
|
|
|
|
|
public DateTime CreateDate { get; set; }
|
|
|
|
|
2022-08-24 19:56:51 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|