HomeLibrary/HomeLibrary.Api/Entities/Book.cs

12 lines
283 B
C#

namespace HomeLibrary.Api.Entities
{
public class Book
{
public int Id { get; set; }
public int AuthorId { get; set; }
public string Title { get; set; }
public string Series { get; set; }
public int BookNumber { get; set; }
}
}