TerminalPushLiveConfigs.cs 702 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Flyinsono.DBCopy.Tool.Entities
  7. {
  8. internal class TerminalPushLiveConfigs
  9. {
  10. public bool IsDeleted { get; set; }
  11. public string Id { get; private set; }
  12. public DateTime CreateTime { get; private set; }
  13. public DateTime UpdateTime { get; set; }
  14. public string TerminalName { get; set; }
  15. public bool IsMergeMode { get; set; }
  16. public LiveProtocol LiveProtocol { get; set; }
  17. public string TerminalId { get; set; }
  18. }
  19. public enum LiveProtocol
  20. {
  21. Rtmp,
  22. RTC,
  23. Rtsp
  24. }
  25. }