Files
juipnet/Infrastructure/WxApi/Request/UploadWxImageMaterialRequest.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

39 lines
929 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.
namespace Etor.Wx.Open
{
public class UploadWxImageMaterialRequest
{
/// <summary>
/// 是否永久素材
/// </summary>
public bool IsTemp { get; set; }
/// <summary>
/// image 图片 thumb 缩略图
/// </summary>
public string MediaType { get; set; }
/// <summary>
/// 图片名称
/// </summary>
public string imagename { get; set; }
/// <summary>
/// 分组id默认0
/// </summary>
public int groupid { get; set; }
/// <summary>
/// 小区/写字楼编码
/// </summary>
public string projectcode { get; set; }
/// <summary>
/// 公众号appid
/// </summary>
public string appid { get; set; }
/// <summary>
///图片地址
/// </summary>
public string url { get; set; }
}
}