13 lines
		
	
	
	
		
			449 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			449 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package com.mojang.realmsclient.dto;
 | |
| 
 | |
| import com.google.gson.annotations.SerializedName;
 | |
| import java.util.List;
 | |
| import net.fabricmc.api.EnvType;
 | |
| import net.fabricmc.api.Environment;
 | |
| 
 | |
| @Environment(EnvType.CLIENT)
 | |
| public record PreferredRegionsDto(@SerializedName("regionDataList") List<RegionDataDto> regionData) implements ReflectionBasedSerialization {
 | |
| 	public static PreferredRegionsDto empty() {
 | |
| 		return new PreferredRegionsDto(List.of());
 | |
| 	}
 | |
| }
 |