Arkadiy Radaev f31982e59f res1
2024-02-06 12:37:25 +04:00

10 lines
166 B
C#

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