csharp-sdk-upm/Realtime/Conversation/LCIMServiceConversation.cs

9 lines
204 B
C#
Raw Normal View History

using System;
namespace LeanCloud.Realtime {
public class LCIMServiceConversation : LCIMConversation {
public LCIMServiceConversation(LCIMClient client) : base(client) {
}
}
}