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/AuthenticationToken.cs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 DTOs/AuthenticationToken.cs (limited to 'DTOs/AuthenticationToken.cs') diff --git a/DTOs/AuthenticationToken.cs b/DTOs/AuthenticationToken.cs new file mode 100644 index 0000000..9014027 --- /dev/null +++ b/DTOs/AuthenticationToken.cs @@ -0,0 +1,6 @@ +namespace LibraryAPI.DTOs { + public class AuthenticationToken { + public string? Token { get; set; } + public DateTime Expiration { get; set; } + } +} -- cgit v1.2.3