using Service.Cloud.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Service.Cloud.Msg.Host.Resp
{
///
/// 1.2 换电站应答后台服务器下发参数设置
///
public class SetConfigRes : ICmd
{
///
/// 应答结果
/// 0:成功 1:失败
///
///
public int re { get; set; }
public string GetCmd()
{
return CloudConst.setConfigRes;
}
}
}