2020-03-12 16:23:21 +08:00
|
|
|
|
using System;
|
2020-03-16 11:50:49 +08:00
|
|
|
|
|
|
|
|
|
namespace LeanCloud.Realtime {
|
|
|
|
|
public class LCIMTypedMessage : LCIMMessage {
|
|
|
|
|
protected int type;
|
|
|
|
|
|
|
|
|
|
protected LCIMTypedMessage(int type) {
|
|
|
|
|
this.type = type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal override string Serialize() {
|
|
|
|
|
throw new NotImplementedException();
|
2020-03-12 16:23:21 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|