123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Flyinsono.DBCopy.Tool.Entities
- {
- internal class TerminalPushLiveConfigs
- {
- public bool IsDeleted { get; set; }
- public string Id { get; private set; }
- public DateTime CreateTime { get; private set; }
- public DateTime UpdateTime { get; set; }
- public string TerminalName { get; set; }
- public bool IsMergeMode { get; set; }
- public LiveProtocol LiveProtocol { get; set; }
- public string TerminalId { get; set; }
- }
- public enum LiveProtocol
- {
- Rtmp,
- RTC,
- Rtsp
- }
- }
|