NewGaoKaoApi/PaymentSDK/AliPay/Domain/PortfolioInfoOpenModel.cs

43 lines
1.1 KiB
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;
namespace Aop.Api.Domain
{
/// <summary>
/// PortfolioInfoOpenModel Data Structure.
/// </summary>
[Serializable]
public class PortfolioInfoOpenModel : AopObject
{
/// <summary>
/// 头图素材id
/// </summary>
[XmlElement("cover_image_id")]
public string CoverImageId { get; set; }
/// <summary>
/// 头图素材type 枚举PICTURE/VIDEO
/// </summary>
[XmlElement("cover_image_type")]
public string CoverImageType { get; set; }
/// <summary>
/// 头图链接
/// </summary>
[XmlElement("cover_image_url")]
public string CoverImageUrl { get; set; }
/// <summary>
/// 作品集id
/// </summary>
[XmlElement("portfolio_id")]
public string PortfolioId { get; set; }
/// <summary>
/// 作品集标题
/// </summary>
[XmlElement("portfolio_title")]
public string PortfolioTitle { get; set; }
}
}