parent
defdceaf24
commit
f76303a1cf
3 changed files with 18 additions and 7 deletions
Binary file not shown.
@ -0,0 +1,14 @@ |
||||
using System.ComponentModel.DataAnnotations; |
||||
|
||||
namespace BuecherwurmAPI.Models |
||||
{ |
||||
public class Copy |
||||
{ |
||||
[Key] |
||||
[Required] |
||||
public int CopyId { get; set; } |
||||
[Required] |
||||
public int ProductId { get; set; } |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue