NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenPublicAdvertCreat...

21 lines
622 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayOpenPublicAdvertCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicAdvertCreateModel : AopObject
{
/// <summary>
/// 广告位轮播内容列表数量限制大于1个小于3个广告位轮播内容顺序根据接口传入的顺序排列
/// </summary>
[XmlArray("advert_items")]
[XmlArrayItem("advert_item")]
public List<AdvertItem> AdvertItems { get; set; }
}
}