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

20 lines
465 B
C#
Raw Normal View History

2022-09-10 07:12:03 +03:00
using System;
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-09-10 07:12:03 +03:00
public DateTime CreateDate { get; set; }
2022-08-22 00:14:50 +03:00
}
}