diff --git a/Entidades/Dto/LoginDto.cs b/Entidades/Dto/LoginDto.cs
index 17f707c..795194f 100644
--- a/Entidades/Dto/LoginDto.cs
+++ b/Entidades/Dto/LoginDto.cs
@@ -2,7 +2,6 @@ using System.ComponentModel.DataAnnotations.Schema;
namespace Entidades.Dto;
-[NotMapped]
public class LoginDto
{
public string Email {get; set;} = string.Empty;
diff --git a/Front/src/assets/svelte.svg b/Front/src/assets/svelte.svg
deleted file mode 100644
index c5e0848..0000000
--- a/Front/src/assets/svelte.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/Modelo/RepositorioBase.cs b/Modelo/RepositorioBase.cs
index bfeb5a3..1701ca5 100644
--- a/Modelo/RepositorioBase.cs
+++ b/Modelo/RepositorioBase.cs
@@ -4,14 +4,11 @@ using Microsoft.EntityFrameworkCore;
namespace Modelo;
-public abstract class RepositorioBase
- where T : class, new()
+public abstract class RepositorioBase
where S : new()
{
protected AlquilaFacilContext Context { get; set; } = new AlquilaFacilContext();
- public abstract ReadOnlyCollection Listar();
-
private static readonly S instance = new();
public static S Singleton { get{return instance;}}