You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
839 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
/// 推送分享链接反馈意见请求
/// </summary>
public class PushShareLinkFeedBackDto
{
/// <summary>
/// 分享KEY
/// </summary>
public string shareKey { get; set; }
/// <summary>
/// 用户选择意见
/// </summary>
public string userOpinion { get; set; }
/// <summary>
/// 用户意见内容
/// </summary>
public string userOpinionTxt { get; set; }
/// <summary>
/// 是否人工触发默认true true-人工触发 false-定时触发
/// </summary>
public bool isManual { get; set; } = true;
}
}