PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryContracts/ViewModels/ComponentViewModel.cs

16 lines
559 B
C#
Raw Permalink Normal View History

2024-03-13 14:54:56 +04:00
using ConfectioneryDataModels.Models;
2024-05-22 14:38:56 +04:00
using ConfectioneryContracts.Attributes;
2024-03-13 14:54:56 +04:00
namespace ConfectioneryContracts.ViewModels
{
public class ComponentViewModel : IComponentModel
{
2024-05-22 14:38:56 +04:00
[Column(visible: false)]
2024-03-13 14:54:56 +04:00
public int Id { get; set; }
2024-05-22 14:38:56 +04:00
[Column(title: "Название компонента", gridViewAutoSize:
GridViewAutoSize.Fill, isUseAutoSize: true)]
2024-03-13 14:54:56 +04:00
public string ComponentName { get; set; } = string.Empty;
2024-05-22 14:38:56 +04:00
[Column(title: "Цена", width: 80)]
2024-03-13 14:54:56 +04:00
public double Cost { get; set; }
}
}