17 lines
316 B
Java
17 lines
316 B
Java
package com.banesco.common.domain.model;
|
|
|
|
import io.quarkus.runtime.annotations.RegisterForReflection;
|
|
import lombok.*;
|
|
|
|
import java.util.List;
|
|
|
|
@Getter
|
|
@ToString
|
|
@Builder
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
@RegisterForReflection
|
|
public class Payer {
|
|
private List<PartyIdentification> partyIdentification;
|
|
}
|