BuecherwurmAPI/Models/Book.cs

44 lines
1.3 KiB
C#
Raw Normal View History

2020-05-28 11:47:02 +00:00
using System.ComponentModel.DataAnnotations;
namespace BuecherwurmAPI.Models
{
public class Book : IProduct
2020-05-28 11:47:02 +00:00
{
[Key, Required]
public long ProductId { get; set; }
public string Title {get; set;}
2020-05-28 11:47:02 +00:00
public string Author {get; set;}
public string Country {get; set;}
public string Link {get; set;}
public string Language {get; set;}
2020-06-02 10:55:17 +00:00
public long Pages {get; set;}
public long Year {get; set;}
2020-05-28 11:47:02 +00:00
public CategoryEnum Category { get; set; }
public string ImageLink { get; set; }
2020-06-02 10:55:17 +00:00
public long LendTime {get; set;}
2020-05-28 11:47:02 +00:00
public LendTypeEnum LendType {get; set;}
}
public class BookPost : IProductPost
2020-06-03 10:43:03 +00:00
{
public string Title {get; set;}
2020-06-03 10:43:03 +00:00
public string Author {get; set;}
public string Country {get; set;}
public string Link {get; set;}
public string Language {get; set;}
public long Pages {get; set;}
public long Year {get; set;}
public CategoryEnum Category { get; set; }
public string ImageLink { get; set; }
public long LendTime {get; set;}
public LendTypeEnum LendType {get; set;}
public BookPost()
{
LendType = LendTypeEnum.Physical;
LendTime = 30;
Category = CategoryEnum.Book;
}
2020-06-03 10:43:03 +00:00
}
2020-05-28 11:47:02 +00:00
}