using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// KoubeiQualityTestShieldCaselaunchApplyModel Data Structure.
///
[Serializable]
public class KoubeiQualityTestShieldCaselaunchApplyModel : AopObject
{
///
/// 需要执行的测试用例id,多个id用逗号隔开
///
[XmlElement("collection_ids")]
public string CollectionIds { get; set; }
///
/// 钉钉群的dingding_token,用来发送钉钉群消息
///
[XmlElement("dingding_token")]
public string DingdingToken { get; set; }
///
/// 拓展信息
///
[XmlElement("ext_infos")]
public string ExtInfos { get; set; }
}
}