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

24 lines
485 B
C#
Raw Normal View History

2022-08-22 00:14:50 +03:00
using System;
using MapTo;
namespace BlueWest.Data
{
[MapFrom(typeof(Company))]
public partial class CompanyCreate
{
public string Name { get; set; }
public string Address { get; set; }
public Country CurrentCountry { get; set; }
public Country OriginCountry { get; set; }
public DateTime FoundingDate { get; set; }
2022-09-10 07:12:03 +03:00
public DateTime CreateTime { get; } = DateTime.Now;
2022-08-22 00:14:50 +03:00
}
}