ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationDataModels/Models/IComponentModel.cs
Максим Куклев 2a1c4aef7c загрузил
2024-04-07 17:40:43 +04:00

15 lines
294 B
C#

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