PIbd-21_Ihonkina_E.S._Preca.../PrecastConcretePlantDataModels/Models/IReinforcedModel.cs
Катя Ихонкина f1a5244eef Коммит1
2023-02-19 11:27:59 +04:00

17 lines
376 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantDataModels.Models
{
public interface IReinforcedModel : IId
{
string ReinforcedName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> ReinforcedComponents { get; }
}
}