Buecherwurm/IProduct.cs
2020-04-28 10:54:22 +02:00

15 lines
251 B
C#

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