18 lines
504 B
C#
Raw Normal View History

2024-04-13 01:58:54 +04:00
using LawFirmDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LawFirmContracts.BindingModels
{
2024-05-10 23:48:48 +04:00
public class DocumentBindingModel : IDocumentModel
2024-04-13 01:58:54 +04:00
{
public int Id { get; set; }
2024-05-10 23:48:48 +04:00
public string DocumentName { get; set; } = string.Empty;
2024-04-13 01:58:54 +04:00
public double Price { get; set; }
2024-05-10 23:48:48 +04:00
public Dictionary<int, (IComponentModel, int)> DocumentComponents { get; set; } = new();
2024-04-13 01:58:54 +04:00
}
}