PIbd-21_Potapov_N.S._Securi.../SecuritySystem/SecuritySystemDataModels/Models/IComponentModel.cs

9 lines
171 B
C#

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