17 lines
350 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomobilePlantDataModels.Models
{
2023-04-19 15:41:28 +03:00
public interface ICarModel : IId
{
2023-04-19 15:41:28 +03:00
string CarName { get; }
double Price { get; }
2023-04-19 15:41:28 +03:00
Dictionary<int, (IComponentModel, int)> CarComponents { get; }
}
}