BuecherwurmAPI/Models/Copy.cs

14 lines
255 B
C#

using System.ComponentModel.DataAnnotations;
namespace BuecherwurmAPI.Models
{
public class Copy
{
[Key]
[Required]
public int CopyId { get; set; }
[Required]
public int ProductId { get; set; }
}
}