20 lines
522 B
C#
20 lines
522 B
C#
using STODataModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace STOContracts.ViewModels
|
|
{
|
|
public class CarPartViewModel: ICarPartModel
|
|
{
|
|
public int Id { get; set; }
|
|
[DisplayName("название запчасти")]
|
|
public string CarPartName { get; set; } = string.Empty;
|
|
[DisplayName("цена")]
|
|
public double Cost { get; set; }
|
|
}
|
|
}
|