using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.Feedback { /// /// 添加意见反馈 /// public class FeedbackInRequest { /// ///反馈类型(1 功能异常 2 体验优化) /// public int FeedbackType { get; set; } /// /// 反馈类容 /// public string Content { get; set; } /// /// 用户ID /// public int UserId { get; set; } } }