Buecherwurm/IProduct.cs

13 lines
212 B
C#
Raw Normal View History

2020-04-28 08:16:41 +00:00
namespace Bücherwurm
{
public interface IProduct
{
int ProductId {get; set;}
string Category {get; set; }
2020-04-28 08:54:22 +00:00
int LendTime {get; set;}
2020-04-28 08:16:41 +00:00
void OverwriteNullId(int id);
}
}