Add username VO

This commit is contained in:
qvalentin 2022-03-06 15:56:46 +01:00
parent 95afe14a7f
commit cf50f1bb86

View file

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