ISignallingService.cs 194 B

123456789101112
  1. using Blue;
  2. /// <summary>
  3. /// 信令模块
  4. /// </summary>
  5. public interface ISignallingService : IService
  6. {
  7. /// <summary>
  8. /// 获取联系人
  9. /// </summary>
  10. void GetContacts();
  11. }