19 lines
585 B
C#
Raw Normal View History

2023-04-23 16:43:54 +04:00
using SofrwareInstallationContracts.Attributes;
using SoftwareInstallationDataModels.Models;
using System.ComponentModel;
2023-01-30 14:48:39 +04:00
namespace SofrwareInstallationContracts.ViewModels
{
public class ComponentViewModel : IComponentModel
{
2023-04-23 16:43:54 +04:00
[Column(visible: false)]
public int Id { get; set; }
2023-04-23 16:43:54 +04:00
[Column("Название компонента", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
public string ComponentName { get; set; } = string.Empty;
2023-04-23 16:43:54 +04:00
[Column("Цена", width: 80)]
public double Cost { get; set; }
}
}