NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoRenthouseCommonIma...

31 lines
922 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayEcoRenthouseCommonImageUploadModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoRenthouseCommonImageUploadModel : AopObject
{
/// <summary>
/// 文件内容字节数组Base64字符串,最大支持上传5M的文件
/// </summary>
[XmlElement("file_base")]
public string FileBase { get; set; }
/// <summary>
/// 文件类型 1图片支持jpg、png、jpeg、bmp格式 2合同HTML格式
/// </summary>
[XmlElement("file_type")]
public string FileType { get; set; }
/// <summary>
/// true|false是否公共读写私密文件使用否如电子合同
/// </summary>
[XmlElement("is_public")]
public bool IsPublic { get; set; }
}
}