8 lines
162 B
Plaintext
8 lines
162 B
Plaintext
package com.healthcare.ohctech.dto;
|
|
|
|
import java.util.List;
|
|
|
|
public record ChildMenuDto(Long Id, String name, String menuUrl, List<ChildMenuDto> childMenus) {
|
|
|
|
}
|