26 lines
644 B
C#
26 lines
644 B
C#
using System;
|
|
|
|
namespace GZTW.AyaNova.BLL
|
|
{
|
|
/// <summary>
|
|
/// Contains a portable Localized text object data
|
|
///
|
|
///
|
|
/// Used for serializing and de-serializing a locale
|
|
/// (i.e. importing and exporting locales outside the program)
|
|
/// </summary>
|
|
[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
|
|
|
|
}
|
|
}
|