From 8b40d27710e532a43aaf1eb198be64af1a2e576e Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Sun, 6 Nov 2022 17:04:29 -0600 Subject: AƱadidos DTOs y Automapper MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DTOs/GroupDTO.cs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 DTOs/GroupDTO.cs (limited to 'DTOs/GroupDTO.cs') diff --git a/DTOs/GroupDTO.cs b/DTOs/GroupDTO.cs new file mode 100644 index 0000000..345c529 --- /dev/null +++ b/DTOs/GroupDTO.cs @@ -0,0 +1,6 @@ +namespace LibraryAPI.DTOs { + public class GroupDTO { + public long Id { get; set; } + public string? Name { get; set; } + } +} \ No newline at end of file -- cgit v1.2.3