using System; using System.Collections.Generic; namespace DDD { [Serializable] public class SheetTableData { public string Key; public Dictionary LocaleValues = new(); // ex: "en" → "Potion" } [Serializable] public class SheetUploadPayload { public Dictionary> Tables = new(); // TableName → Entries } [Serializable] public class SheetDownloadPayload { public Dictionary>> Tables = new(); // TableName → Rows (Key, en, ko, ja ...) } }