ohctechv3/.svn/pristine/0d/0d8ee22025deaba7b83e8f9159221ae2ec0fa06c.svn-base

7 lines
202 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 InjuryPartDto(Long id, String name, String code, String description, Long modifiedBy, LocalDateTime lastModified) {
}