zwischenstand

This commit is contained in:
Max W.
2025-01-16 23:24:42 +01:00
parent 4e75e25d62
commit 7ebd6a2587
10 changed files with 106 additions and 40 deletions

View File

@@ -0,0 +1,15 @@
package de.w665.biblenotes.rest.ro;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.ToString;
@NoArgsConstructor
@Getter
@Setter
@ToString
public class AuthenticationRequest {
private String username;
private String password;
}