PIbd-21_MasenkinMS_Aircraft.../AircraftPlant/AircraftPlantDataModels/Models/IComponentModel.cs
2024-02-21 01:42:28 +04:00

25 lines
575 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AircraftPlantDataModels.Models
{
/// <summary>
/// Интерфейс для модели компонента
/// </summary>
public interface IComponentModel : IId
{
/// <summary>
/// Имя компонента
/// </summary>
string ComponentName { get; }
/// <summary>
/// Стоимость компонента
/// </summary>
double Cost { get; }
}
}