diff --git a/PyroFetes/DTO/User/Request/ConnectUserDto.cs b/PyroFetes/DTO/User/Request/ConnectUserDto.cs new file mode 100644 index 0000000..1dc3ec4 --- /dev/null +++ b/PyroFetes/DTO/User/Request/ConnectUserDto.cs @@ -0,0 +1,7 @@ +namespace PyroFetes.DTO.User.Request; + +public class ConnectUserDto +{ + public string? Username { get; set; } + public string? Password { get; set; } +} \ No newline at end of file diff --git a/PyroFetes/DTO/User/Response/GetTokenDto.cs b/PyroFetes/DTO/User/Response/GetTokenDto.cs new file mode 100644 index 0000000..1c46ac0 --- /dev/null +++ b/PyroFetes/DTO/User/Response/GetTokenDto.cs @@ -0,0 +1,6 @@ +namespace PyroFetes.DTO.User.Response; + +public class GetTokenDto +{ + public string? Token { get; set; } +} \ No newline at end of file