25 lines
595 B
C#
25 lines
595 B
C#
using ConstructionFirmDataModels.Models;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.ComponentModel;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace Subd_4.ViewModels
|
||
{
|
||
public class ConstructionMaterialViewModel : IConstructionMaterialModel
|
||
{
|
||
public int Id { get; set; }
|
||
|
||
[DisplayName("Название материала")]
|
||
public string MaterialName { get; set; } = string.Empty;
|
||
|
||
[DisplayName("Cтоимость ")]
|
||
public int Cost { get; set; }
|
||
|
||
[DisplayName("Количество ")]
|
||
public int Quantity { get; set; }
|
||
}
|
||
}
|