10 lines
197 B
C#
10 lines
197 B
C#
namespace HardwareShopDataModels.Models
|
|
{
|
|
public interface IComponentModel : IId
|
|
{
|
|
string ComponentName { get; }
|
|
double Cost { get; }
|
|
int UserId { get; }
|
|
}
|
|
}
|