Создание моделей данных

This commit is contained in:
bekodeg
2024-04-17 21:44:51 +04:00
parent e4b69370d6
commit 8049b51388
12 changed files with 115 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace ComputerHardwareStoreDataModels.Models
{
public interface IBuildModel : IId
{
string BuildName { get; }
double Price { get; }
int VendorId { get; }
public Dictionary<int, (IComponentModel, int)> BuildComponent { get; }
}
}