24 lines
500 B
C#
24 lines
500 B
C#
using System.Collections.Generic;
|
|
|
|
namespace LeanCloud.Realtime {
|
|
public class LCIMOperationFailure {
|
|
public int Code {
|
|
get; set;
|
|
}
|
|
|
|
public string Reason {
|
|
get; set;
|
|
}
|
|
|
|
public List<string> IdList {
|
|
get; set;
|
|
}
|
|
|
|
//public LCIMOperationFailure(ErrorCommand error) {
|
|
// Code = error.Code;
|
|
// Reason = error.Reason;
|
|
// MemberList = error.Pids.ToList();
|
|
//}
|
|
}
|
|
}
|