23 lines
473 B
C#
23 lines
473 B
C#
|
using DataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Contracts.BindingModels
|
|||
|
{
|
|||
|
public class CarBM : ICar
|
|||
|
{
|
|||
|
public string Model { get; set; } = string.Empty;
|
|||
|
|
|||
|
public int Tonnage { get; set; }
|
|||
|
|
|||
|
public int StatusId { get; set; }
|
|||
|
|
|||
|
public string StatusTitle { get; set; } = string.Empty;
|
|||
|
|
|||
|
public int Id { get; set; }
|
|||
|
}
|
|||
|
}
|