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

15 lines
294 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantDataModels.Models
{
public interface IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
}
}