HomeLibrary/HomeLibrary.Models/Dtos/BookDto.cs

18 lines
402 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HomeLibrary.Models.Dtos
{
public class BookDto
{
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; }
}
}