copy and paste service-a for add cqrs design

This commit is contained in:
esmailian
2025-04-28 08:06:35 +03:30
parent 59cdcac476
commit f40f78cf8b
13 changed files with 196 additions and 2 deletions

View File

@ -0,0 +1,13 @@
package com.example.mmad.testapp.command;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class CreateUserCommand {
private Long userId;
private String userName;
private String email;
}