Buecherwurm/IProduct.cs
2020-04-28 15:36:36 +02:00

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);
}
}