21 lines
453 B
C#
21 lines
453 B
C#
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
|
||
{
|
||
/// <summary>
|
||
/// 当前详细id
|
||
/// </summary>
|
||
public long Id { get; set; }
|
||
/// <summary>
|
||
/// 1:上一条 2:下一条
|
||
/// </summary>
|
||
public int Mark { get; set; }
|
||
}
|
||
}
|