16 lines
359 B
C#
Raw Normal View History

2025-09-19 14:56:58 +05:00
using System;
using System.Collections.Generic;
namespace LanguageManager
{
/// <summary>
/// Wrapper class to encapsulate language data for serialization and deserialization.
/// </summary>
[Serializable]
public class LanguageDataWrapper
{
public List<Language> Languages;
public List<TextEntry> TextEntries;
}
}