Buecherwurm/IProduct.cs

17 lines
294 B
C#

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