CodeLiturgy.Dashboard/BlueWest.Data.Capital/Capital/Industry/Industry.cs

20 lines
465 B
C#

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