using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// TestCaseDomain Data Structure.
///
[Serializable]
public class TestCaseDomain : AopObject
{
///
/// ISV的测试节点
///
[XmlElement("action")]
public string Action { get; set; }
///
/// 测试用例id
///
[XmlElement("case_id")]
public string CaseId { get; set; }
///
/// 测试集id
///
[XmlElement("collection_id")]
public string CollectionId { get; set; }
///
/// 测试用例描述
///
[XmlElement("desc")]
public string Desc { get; set; }
///
/// 测试用例拓展信息
///
[XmlElement("ext_infos")]
public string ExtInfos { get; set; }
///
/// 测试用例优先级
///
[XmlElement("priority")]
public string Priority { get; set; }
}
}