23 lines
345 B
C#
23 lines
345 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PWCommon1.Localization
|
|
{
|
|
public class LocalizationCategory
|
|
{
|
|
public string Name;
|
|
|
|
public List<LocalizationItem> Items;
|
|
|
|
public LocalizationCategory(string name)
|
|
{
|
|
Name = name;
|
|
Items = new List<LocalizationItem>();
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return Name;
|
|
}
|
|
}
|
|
}
|