17 lines
363 B
C#
17 lines
363 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.OA.WorkProcess.Summarize
|
|
{
|
|
public class SummarizeNoReadResult
|
|
{
|
|
/// <summary>
|
|
/// 未读消息数量
|
|
/// </summary>
|
|
public int NoReadCount { get; set; }
|
|
}
|
|
}
|