NOTE: hay que rehacer el dto porque no se comporta como deberia

This commit is contained in:
2024-10-21 01:55:46 -03:00
parent a011b3a970
commit 4f358d4c2a
4 changed files with 57 additions and 15 deletions

View File

@@ -0,0 +1,6 @@
namespace Entidades.Dto;
public class CrearClienteDto {
public Cliente Cliente { get; set; } = new();
public Usuario Usuario { get; set; } = new();
}