using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Container.Model
{
public class SubTitle
{
///
/// 字幕内容
///
public string text { get; set; }
///
/// 开始时间
///
public string beginTime { get; set; }
///
/// 结束时间
///
public string endTime { get; set; }
///
/// 位置
///
public string location { get; set; }
///
/// 编码
///
public string code { get; set; }
///
/// 字体大小
///
public int fontSize { get; set; }
///
/// 滚动方向 left:从左到右 right:从右到左
///
public string direction { get; set; }
///
/// 字体颜色
///
public string fontColor { get; set; }
}
}