Buecherwurm/IProduct.cs

13 lines
212 B
C#

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