18 lines
336 B
C#
18 lines
336 B
C#
|
namespace Bücherwurm
|
||
|
{
|
||
|
partial class Item
|
||
|
{
|
||
|
public int ItemId {get;}
|
||
|
|
||
|
public int BookId {get;}
|
||
|
|
||
|
public StatusEnum Status {get; set;}
|
||
|
|
||
|
public Item(int Id, int BookId)
|
||
|
{
|
||
|
ItemId = Id;
|
||
|
this.BookId = BookId;
|
||
|
Status = StatusEnum.Available;
|
||
|
}
|
||
|
}
|
||
|
}
|