2020-03-17 16:17:19 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using LeanCloud.Storage;
|
|
|
|
|
|
|
|
|
|
namespace LeanCloud.Realtime {
|
|
|
|
|
public class LCIMPartiallySuccessResult {
|
|
|
|
|
public List<string> SuccessfulClientIdList {
|
|
|
|
|
get; internal set;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<LCIMOperationFailure> FailureList {
|
|
|
|
|
get; internal set;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public LCIMPartiallySuccessResult() {
|
|
|
|
|
}
|
2020-03-19 15:12:50 +08:00
|
|
|
|
|
|
|
|
|
public bool IsSuccess => FailureList == null || FailureList.Count == 0;
|
2020-03-17 16:17:19 +08:00
|
|
|
|
}
|
|
|
|
|
}
|