BaseRepository implementado

Siguiente video: 50 Implementar metodos personalizados
This commit is contained in:
Alejandro Sarmiento
2024-02-17 13:35:47 +01:00
parent ed5a0cceb0
commit 7ada54dbf5
55 changed files with 2299 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace CleanArchitecture.Application.Models
{
public class Email
{
public string? To { get; set; }
public string? Subject { get; set; }
public string? Body { get; set; }
}
}