ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationDataModels/Models/IComponentModel.cs

14 lines
293 B
C#
Raw Normal View History

2024-05-12 14:45:39 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-04-07 16:54:02 +04:00
namespace SoftwareInstallationDataModels.Models
{
public interface IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
}
2024-05-12 14:45:39 +04:00
}