Buecherwurm/IProduct.cs

15 lines
251 B
C#

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