22 lines
572 B
C#
22 lines
572 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();
|
|
}
|
|
} |