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

21 lines
410 B
C#
Raw Normal View History

2022-08-23 19:48:16 +03:00
using System;
using MapTo;
namespace BlueWest.Data
{
[MapFrom(typeof(Company))]
public partial class CompanyUpdate
{
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; }
}
}