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

31 lines
718 B
C#
Raw Normal View History

2022-08-22 00:14:50 +03:00
using System;
using System.Collections.Generic;
using MapTo;
namespace BlueWest.Data
{
2022-08-23 19:48:16 +03:00
[MapFrom(new [] {typeof(CompanyCreate), typeof(CompanyUpdate)})]
2022-08-22 00:14:50 +03:00
public partial class Company
{
public int Id { get; set; }
public string Name { get; set; }
public string Address { get; set; }
public CompanyType CompanyType { get; set; }
public Country CurrentCountry { get; set; }
public Country OriginCountry { get; set; }
public DateTime FoundingDate { get; set; }
public List<Industry> Industry { get; set; }
2022-08-22 02:51:45 +03:00
2022-09-10 07:12:03 +03:00
public DateTime CreationDate { get; set; }
2022-08-22 00:14:50 +03:00
}
}