SYBD_2024/Subd-4/ViewModels/ConstructionMaterialViewModel.cs

25 lines
595 B
C#
Raw Normal View History

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; }
}
}