Coursach/Course/DataModels/Models/IProductModel.cs

10 lines
178 B
C#
Raw Normal View History

2024-04-03 13:23:32 +04:00
namespace DataModels.Models
{
public interface IProductModel : IId
{
string Name { get; }
double Cost { get; }
2024-04-27 21:46:39 +04:00
int? MachineId { get; }
2024-04-03 13:23:32 +04:00
}
}