16 lines
308 B
C#
16 lines
308 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Model.Customization._7HJ
|
|
{
|
|
public class InformationData
|
|
{
|
|
/// <summary>
|
|
/// 数据项集合
|
|
/// </summary>
|
|
public List<InformationDataItem> InformationDataItems
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
} |