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