using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// KoubeiServindustryPortfolioOpusDeleteModel Data Structure. /// [Serializable] public class KoubeiServindustryPortfolioOpusDeleteModel : AopObject { /// /// 作品ID列表 /// [XmlArray("opus_ids")] [XmlArrayItem("string")] public List OpusIds { get; set; } /// /// 操作人信息 /// [XmlElement("portfolio_operator_info")] public PortfolioOperatorInfo PortfolioOperatorInfo { get; set; } } }