PIbd-22_Kamcharova_K.A_Reno.../RenovationWorkDataModels/Models/IComponentModel.cs

15 lines
288 B
C#
Raw Normal View History

2024-04-17 09:22:08 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RenovationWorkDataModels.Models
{
public interface IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
}
}