using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class HikTokenInfoDto
{
///
/// 通道号
///
public int ChannelNo { get; set; }
///
/// 通道名称
///
public string ChannelName { get; set; }
///
///
///
public string AppKey { get; set; }
///
///
///
public string AppSecret { get; set; }
///
/// Token
///
public string ViewToken { get; set; }
///
/// 播放地址
///
public string LiveUrl { get; set; }
}
}