using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.FeedBack
{
public class PreviousOrNextDto
{
///
/// 当前详细id
///
public long Id { get; set; }
///
/// 1:上一条 2:下一条
///
public int Mark { get; set; }
}
}