24 lines
595 B
C#
24 lines
595 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 string oldModel { get; set; } = string.Empty ;
|
|
public string number { 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; }
|
|
}
|
|
}
|