using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class AnalyAgainMonitorGeneralDayRecordOfDayRangeResultDto
{
///
///
///
public AnalyAgainMonitorGeneralDayRecordOfDayRangeResultDto() { }
///
///
///
public AnalyAgainMonitorGeneralDayRecordOfDayRangeResultDto(bool succeed,string msg)
{
this.Succeed = succeed;
this.Message = msg;
}
///
/// 是否成功
///
public bool Succeed { get; set; }
///
/// 信息
///
public string Message { get; set; }
}
}