2023-04-01 15:44:23 +04:00
|
|
|
|
namespace HardwareShopDataModels.Models
|
2023-04-01 12:10:46 +04:00
|
|
|
|
{
|
2023-04-01 12:26:05 +04:00
|
|
|
|
public interface IGoodModel : IId
|
2023-04-01 12:10:46 +04:00
|
|
|
|
{
|
2023-04-01 15:44:23 +04:00
|
|
|
|
string GoodName { get; }
|
|
|
|
|
double Price { get; }
|
|
|
|
|
int UserId { get; }
|
2023-04-04 02:09:53 +04:00
|
|
|
|
Dictionary<int, (IComponentModel, int)> GoodComponents { get; }
|
2023-04-01 12:10:46 +04:00
|
|
|
|
}
|
|
|
|
|
}
|