namespace JSMR.Domain.Entities; public sealed class VoiceWorkLocalization { public int VoiceWorkLocalizationId { get; set; } public int VoiceWorkId { get; set; } public string Language { get; set; } = null!; // "ja-JP", "en", etc. public string? ProductName { get; set; } public string? Description { get; set; } public bool IsOfficial { get; set; } public VoiceWork VoiceWork { get; set; } = null!; }