Files
ayanova7/source/bizobjects/AyaLib/GZTW.AyaNova.BLL/LocalePortable.cs
2018-06-29 19:47:36 +00:00

25 lines
639 B
C#

using System;
using System.Collections;
namespace GZTW.AyaNova.BLL
{
/// <summary>
/// Contains a portable Locale
///
///
/// Used for serializing and de-serializing a locale
/// (i.e. importing and exporting locales outside the program)
/// </summary>
[Serializable]
public class LocalePortable
{
#pragma warning disable 1591
private ArrayList mItems;
public ArrayList Items { get { return mItems; } set { mItems = value; } }
private string mLocale;
public string Locale { get { return mLocale; } set { mLocale = value; } }
#pragma warning restore 1591
}
}