HvIpChannel.cs 482 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace QuickNV.HikvisionNetSDK.Api
  5. {
  6. public class HvIpChannel : HvChannel
  7. {
  8. private int rtspChannelId;
  9. public bool IsOnline { get; }
  10. public override int RtspChannelId => rtspChannelId;
  11. internal HvIpChannel(int id, int rtspChannelId, bool isOnline) : base(id)
  12. {
  13. IsOnline = isOnline;
  14. this.rtspChannelId = rtspChannelId;
  15. }
  16. }
  17. }