15 lines
458 B
C#

namespace Biblioteca.Models;
public class Livro
{
public string? Isbn { get; set; }
public string? Titulo { get; set; }
public string? Autor { get; set; }
public string? Genero { get; set; }
public string? Descricao { get; set; }
public string? Foto { get; set; }
public string? Keywords { get; set; }
public bool Ativo { get; set; }
public DateTime CriadoEm { get; set; }
public DateTime AtualizadoEm { get; set; }
}