16 lines
536 B
C#
16 lines
536 B
C#
using ShipyardContracts.Attributes;
|
|
using ShipyardDataModels.Models;
|
|
using System.ComponentModel;
|
|
namespace ShipyardContracts.ViewModels
|
|
{
|
|
public class ComponentViewModel : IComponentModel
|
|
{
|
|
[Column(visible: false)]
|
|
public int Id { get; set; }
|
|
[Column(title: "Название компонента", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
public string ComponentName { get; set; } = string.Empty;
|
|
[Column(title: "Цена", width: 80)]
|
|
public double Cost { get; set; }
|
|
}
|
|
}
|