10 lines
204 B
C#
10 lines
204 B
C#
namespace ComputerHardwareStoreDataModels.Models
|
|
{
|
|
public interface IComponentModel : IId
|
|
{
|
|
string Name { get; }
|
|
double Cost { get; }
|
|
int StoreKeeperId { get; }
|
|
}
|
|
}
|