19 lines
563 B
C#
19 lines
563 B
C#
|
using SoftwareInstallationDataModels.Models;
|
|||
|
using System.ComponentModel;
|
|||
|
|
|||
|
namespace SoftwareInstallationContracts.ViewModels
|
|||
|
{
|
|||
|
public class PackageViewModel : IPackageModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
[DisplayName("Название изделия")]
|
|||
|
public string PackageName { get; set; } = string.Empty;
|
|||
|
[DisplayName("Цена")]
|
|||
|
public double Price { get; set; }
|
|||
|
public Dictionary<int, (IComponentModel, int)> PackageComponents
|
|||
|
{
|
|||
|
get;
|
|||
|
set;
|
|||
|
} = new();
|
|||
|
}
|
|||
|
}
|