using System; namespace GZTW.AyaNova.BLL { /// /// Contains a portable Localized text object data /// /// /// Used for serializing and de-serializing a locale /// (i.e. importing and exporting locales outside the program) /// [Serializable] public class LocalizedTextPortable { #pragma warning disable 1591 private string mKey; public string Key { get { return mKey; } set { mKey = value; } } private string mDisplayText; public string DisplayText { get { return mDisplayText; } set { mDisplayText = value; } } #pragma warning restore 1591 } }