16 lines
333 B
C#
16 lines
333 B
C#
|
using System;
|
|||
|
|
|||
|
namespace LeanCloud.Realtime {
|
|||
|
public class LCIMBinaryMessage : LCIMMessage {
|
|||
|
private byte[] data;
|
|||
|
|
|||
|
public LCIMBinaryMessage(byte[] data) {
|
|||
|
this.data = data;
|
|||
|
}
|
|||
|
|
|||
|
internal override string Serialize() {
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|