ISEbd-21_Chegodaev_A.Y._Law.../LawFirm/LawFirmContracts/ViewModels/DocumentViewModel.cs
aleksandr chegodaev 39c1538546 lab4
2024-05-10 23:48:48 +04:00

26 lines
678 B
C#

using LawFirmDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LawFirmContracts.ViewModels
{
public class DocumentViewModel : IDocumentModel
{
public int Id { get; set; }
[DisplayName("Название пакета документов")]
public string DocumentName { get; set; } = string.Empty;
[DisplayName("Цена")]
public double Price { get; set; }
public Dictionary<int, (IComponentModel, int)> DocumentComponents
{
get;
set;
} = new();
}
}