21 lines
565 B
C#
21 lines
565 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// KoubeiCateringCrowdgroupConditionQueryResponse.
|
|
/// </summary>
|
|
public class KoubeiCateringCrowdgroupConditionQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// isv创建的用户规则分组描述
|
|
/// </summary>
|
|
[XmlArray("condition_list")]
|
|
[XmlArrayItem("user_crowd_conditions")]
|
|
public List<UserCrowdConditions> ConditionList { get; set; }
|
|
}
|
|
}
|