2020-03-27 15:52:34 +08:00
|
|
|
|
using System.Collections.ObjectModel;
|
2020-03-17 16:17:19 +08:00
|
|
|
|
|
|
|
|
|
namespace LeanCloud.Realtime {
|
|
|
|
|
public class LCIMPageResult {
|
2020-03-27 15:52:34 +08:00
|
|
|
|
public ReadOnlyCollection<string> Results {
|
2020-03-17 16:17:19 +08:00
|
|
|
|
get; internal set;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Next {
|
|
|
|
|
get; internal set;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|