BuecherwurmAPI/Models/Book.cs

23 lines
655 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
2020-05-27 06:38:40 +00:00
namespace BuecherwurmAPI.Models
{
public class Book
{
public string Name {get; set;}
public string Author {get; set;}
public string Country {get; set;}
public string Link {get; set;}
public string Language {get; set;}
public int Pages {get; set;}
public int Year {get; set;}
[Key]
[Required]
2020-05-27 06:38:40 +00:00
public int ProductId { get; set; }
public CategoryEnum Category { get; set; }
public string ImageLink { get; set; }
public int LendTime {get; set;}
public LendTypeEnum LendType {get; set;}
2020-05-27 06:38:40 +00:00
}
}