using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Shentun.WebPeis.Questions { public class UpdateQuestionSortTopOrBottomInputDto { public Guid QuestionId { get; set; } /// /// 修改方式:1 置顶 2 置底 /// public int SortType { get; set; } } }