18 lines
264 B
C#
18 lines
264 B
C#
|
using MapTo;
|
||
|
|
||
|
namespace BlueWest.Data
|
||
|
{
|
||
|
[MapFrom(typeof(Company))]
|
||
|
public partial class CompanyType
|
||
|
{
|
||
|
public int Id { get; set; }
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
public CompanyType()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|