123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace fis.media.Library.Input.FisVideoMemberInput
- {
- public class LiveData
- {
- public int Width { get; set; }
- public int Height { get; set; }
- public string RtmpPushUrl { get; set; }
- public string RtmpPullUrl { get; set; }
- public string HttpPullUrl { get; set; }
- public string HlsPullUrl { get; set; }
- }
- }
|