Computer_Hardware_Store/HardwareShop/HardwareShopDataModels/Models/IComponentModel.cs

11 lines
266 B
C#

namespace HardwareShopDataModels.Models
{
public interface IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
int UserId { get; }
Dictionary<int, (IBuildModel, int)> ComponentBuilds { get; }
}
}