11 lines
267 B
C#
11 lines
267 B
C#
namespace HardwareShopDataModels.Models
|
|
{
|
|
public interface IComponentModel : IId
|
|
{
|
|
string ComponentName { get; }
|
|
double Cost { get; }
|
|
int UserId { get; }
|
|
Dictionary<int, (IBuildModel, int)>? ComponentBuilds { get; }
|
|
}
|
|
}
|