summaryrefslogtreecommitdiff
path: root/src/main/java/com/mavlushechka/notaryautomation/Passport.java
blob: 86b75ca7927a5d6d46bf44cf12eadfa784944ac4 (plain)
1
2
3
4
5
6
package com.mavlushechka.notaryautomation;

import java.time.LocalDate;

public record Passport(String serial, int number, String citizenship, String placeOfIssue, LocalDate dateOfIssue, String personalIdentificationNumberOfThePhysicalPerson, String placeOfResidence) {
}