Add files via upload

initial commit
This commit is contained in:
sbawa
2019-09-23 14:01:55 -07:00
committed by GitHub
commit 4b1bf0962d
13 changed files with 410 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package com.example.match.api;
import lombok.Value;
import org.axonframework.modelling.command.TargetAggregateIdentifier;
import java.util.UUID;
/**
* @author simar bawa
*/
@Value
public class InquiryCreateCommand {
@TargetAggregateIdentifier
UUID id;
String firstName;
String status;
}