using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AircraftPlantDataModels.Models { /// /// Интерфейс для модели изделия /// public interface IPlaneModel : IId { /// /// Название изделия /// string PlaneName { get; } /// /// Стоимость изделия /// double Price { get; } /// /// Коллекция компонентов изделия /// Dictionary PlaneComponents { get; } } }