ohctechv3/.svn/pristine/cf/cf644b1550b7438a81e83812f3c51e92f43849f2.svn-base
2024-10-28 15:03:36 +05:30

7 lines
243 B
Plaintext

package com.healthcare.ohctech.dto;
import java.time.LocalDateTime;
public record CityDto(Long id, String city, Integer acCost, Integer acAmbCharge, Integer nonAcCost, Integer nonAcAmbCharge, Long modifiedBy, LocalDateTime lastModified) {
}