JianGongYun/JianGongYun/TRTC/Models/VideoFrameEntity.cs

16 lines
295 B
C#

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;
}
}