15 lines
No EOL
245 B
C#
15 lines
No EOL
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);
|
|
}
|
|
} |