Add username VO

This commit is contained in:
qvalentin 2022-03-06 15:56:46 +01:00
parent 95afe14a7f
commit cf50f1bb86
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
package user;
public record Username(String username) {
//TODO: checks if username is valid
}