20 lines
408 B
C#
20 lines
408 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Complaint.Domain.Dto
|
|
{
|
|
/// <summary>
|
|
/// 投诉日志队列
|
|
/// </summary>
|
|
public class ComplaintLogMessageDto : ComplaintLog
|
|
{
|
|
/// <summary>
|
|
/// 重试次数
|
|
/// </summary>
|
|
public int RetryCount { get; set; } = 0;
|
|
}
|
|
}
|