11 lines
No EOL
183 B
C#
11 lines
No EOL
183 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BuecherwurmAPI.Models
|
|
{
|
|
public class ItemPost
|
|
{
|
|
[Required]
|
|
public int BookId { get; set; }
|
|
}
|
|
|
|
} |