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

10 lines
234 B
C#

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