using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareCc.DecomposeTask.Entity { /// /// 结果容器 /// public class ResultContainer { private string msg = ""; /// /// 成功为空 /// public string Msg { get { return msg; } set { msg = value; } } private bool success = false; public bool Success { get { return success; } set { success = value; } } } }