Buecherwurm/IProduct.cs

17 lines
294 B
C#
Raw Normal View History

2020-04-28 08:16:41 +00:00
namespace Bücherwurm
{
public interface IProduct
{
int ProductId {get; set;}
2020-04-28 13:29:20 +00:00
CategoryEnum Category {get; set; }
2020-04-28 08:16:41 +00:00
2020-04-28 08:54:22 +00:00
int LendTime {get; set;}
2020-04-28 13:11:31 +00:00
string Name {get; set;}
2020-04-28 13:36:36 +00:00
LendTypeEnum LendType {get; set;}
2020-04-28 08:16:41 +00:00
void OverwriteNullId(int id);
}
}