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

22 lines
416 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; }
}
}