7 lines
253 B
Plaintext
7 lines
253 B
Plaintext
|
package com.healthcare.ohctech.dto;
|
||
|
|
||
|
import java.time.LocalDateTime;
|
||
|
|
||
|
public record AmbulanceDetailsNewDto(Long id, String ambulanceName, String ambulanceNumber, Long modifiedBy, LocalDateTime lastModified, Long ohcTypeId, Long ambulanceCategoryId) {
|
||
|
}
|