Buecherwurm/IProduct.cs

13 lines
217 B
C#

namespace Bücherwurm
{
public interface IProduct
{
int ProductId {get; set;}
string Category {get; set; }
string ImageLink { get; set;}
void OverwriteNullId(int id);
}
}