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