using System;
using System.Collections.Generic;
using System.Text;
namespace JT808.DotNetty.Dtos
{
///
/// 包计数器服务
///
public class JT808AtomicCounterDto
{
///
/// 成功数
///
public long MsgSuccessCount { get; set; }
///
/// 失败数
///
public long MsgFailCount { get; set; }
}
}