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