ohctechv3/.svn/pristine/8f/8f1ff20221d96659f626d32564e6877dc38e6d80.svn-base

7 lines
253 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
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) {
}