PIbd-23_Razin_A.A._Security.../SecuritySystem/SecuritySystemDataModels/Models/IComponentModel.cs

9 lines
171 B
C#

namespace SecuritySystemDataModels.Models
{
public interface IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
}
}