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

15 lines
245 B
C#

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