using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Complaint.Domain.Dto
{
///
/// 投诉日志队列
///
public class ComplaintLogMessageDto : ComplaintLog
{
///
/// 重试次数
///
public int RetryCount { get; set; } = 0;
}
}