|
using System;
|
|
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; }
|
|
|
|
public DateTime CreateDate { get; set; }
|
|
|
|
}
|
|
}
|
|
|