Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEcoRenthouseCommonImageUploadModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

30 lines
834 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoRenthouseCommonImageUploadModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoRenthouseCommonImageUploadModel : AopObject
{
/// <summary>
/// 文件内容字节数组Base64字符串,最大支持上传5M的文件
/// </summary>
[JsonProperty("file_base")]
public string FileBase { get; set; }
/// <summary>
/// 文件类型 1图片支持jpg、png、jpeg、bmp格式 2合同HTML格式
/// </summary>
[JsonProperty("file_type")]
public string FileType { get; set; }
/// <summary>
/// true|false是否公共读写私密文件使用否如电子合同
/// </summary>
[JsonProperty("is_public")]
public bool IsPublic { get; set; }
}
}