|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace JianGongYun.TRTC.Models
|
|
{
|
|
public class VideoFrameEntity
|
|
{
|
|
public byte[] Data { get; set; } = null;
|
|
public int Width { get; set; } = 0;
|
|
public int Height { get; set; } = 0;
|
|
|
|
|
|
}
|
|
}
|