9 lines
164 B
C#
9 lines
164 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Wizard;
|
|
|
|
public class PackInfo : HeaderData
|
|
{
|
|
private List<PackConfig> m_dataList = new List<PackConfig>();
|
|
}
|