2024-04-12 18:53:03 +04:00

12 lines
205 B
C#

using System.Security.Cryptography;
namespace ComputersShopDataModels.Models
{
public interface IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
}
}