using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 删除原因
///
public class DeleteReasonOutput
{
///
/// 是否成功
///
public bool Success { get; set; }
///
/// 原因
///
public string Reason { get; set; }
}
}