Buecherwurm/IProduct.cs

13 lines
217 B
C#
Raw Normal View History

2020-04-28 08:16:41 +00:00
namespace Bücherwurm
{
public interface IProduct
{
int ProductId {get; set;}
string Category {get; set; }
string ImageLink { get; set;}
void OverwriteNullId(int id);
}
}