PIbd-22_Safiulova_K.N._Airc.../AircraftPlant/AircraftPlantDataModels/IComponentModel.cs

14 lines
286 B
C#
Raw Permalink Normal View History

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