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