LocalizedRefDto typedef
Reference with localized names, for entities available in both Chinese and English course systems.
Implementation
typedef LocalizedRefDto = ({
/// Entity's unique identifier code.
String? id,
/// Name in Traditional Chinese.
String? nameZh,
/// Name in English.
String? nameEn,
});