22 lines
629 B
C#
Raw Normal View History

2024-05-17 23:32:45 +04:00
using BarContracts.Attributes;
using BarDataModels.Models;
2024-03-30 14:30:43 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BarContracts.ViewModels
{
public class ComponentViewModel : IComponentModel
{
2024-05-17 23:32:45 +04:00
[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: 150)]
public double Cost { get; set; }
2024-03-30 14:30:43 +04:00
}
}