17 lines
546 B
C#
17 lines
546 B
C#
using IceCreamShopDataModels.Models;
|
|
using IceCreamShopContracts.Attributes;
|
|
|
|
namespace IceCreamShopContracts.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: 150)]
|
|
public double Cost { get; set; }
|
|
}
|
|
} |