using System;
|
using System.Collections.Generic;
|
using System.Runtime.Serialization;
|
|
namespace TProduct.Entity
|
{
|
/// <summary>
|
/// 测试
|
/// </summary>
|
[DataContract]
|
[Serializable]
|
public class TestProjectItemBundleTree
|
{
|
|
/// <summary>
|
/// 测试项目标识
|
/// </summary>
|
[DataMember]
|
public TestProjectItemBundle Bundle
|
{
|
get { return _map; }
|
set { _map = value; }
|
}
|
private TestProjectItemBundle _map;
|
|
|
|
/// <summary>
|
/// 测试项目标识
|
/// </summary>
|
[DataMember]
|
public List<TestProjectItem> Items
|
{
|
get { return _items; }
|
set { _items = value; }
|
}
|
private List<TestProjectItem> _items;
|
|
|
|
|
}
|
}
|