using System.Collections.Generic; namespace LeanCloud.Realtime { /// /// 部分成功结果 /// public class LCIMPartiallySuccessResult { /// /// 成功数据集 /// public List SuccessfulClientIdList { get; internal set; } /// /// 失败原因 /// public List FailureList { get; internal set; } public LCIMPartiallySuccessResult() { } public bool IsSuccess => FailureList == null || FailureList.Count == 0; } }