HvChannel.cs 358 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace QuickNV.HikvisionNetSDK.Api
  5. {
  6. public class HvChannel
  7. {
  8. public int Id { get; }
  9. public string Name { get; internal set; }
  10. public virtual int RtspChannelId => Id;
  11. internal HvChannel(int id)
  12. {
  13. Id = id;
  14. }
  15. }
  16. }