namespace JiShe.CollectBus;
///
/// BaseResultDto
///
///
public class BaseResultDto where T : class
{
///
/// Gets or sets a value indicating whether this is status.
///
///
/// true if status; otherwise, false.
///
public bool Status { get; set; }
///
/// Gets or sets the MSG.
///
///
/// The MSG.
///
public string Msg { get; set; }
///
/// Gets or sets the data.
///
///
/// The data.
///
public T Data { get; set; }
}
public class BaseResultDto
{
///
/// Gets or sets a value indicating whether this is status.
///
///
/// true if status; otherwise, false.
///
public bool Status { get; set; }
///
/// Gets or sets the MSG.
///
///
/// The MSG.
///
public string Msg { get; set; }
}