using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IOTContainer.Model { public class SubtitleModel { /// /// 结束时间 /// public DateTime endTime { get; set; } /// /// 字体颜色 /// public string fontColor { get; set; } /// /// 字体大小 /// public int fontSize { get; set; } /// /// id /// public long? newsId { get; set; } /// /// 消息位置,1屏幕上方;2屏幕下方 /// public long? newsLoca { get; set; } /// /// 名称 /// public string newsName { get; set; } /// /// 字幕文字 /// public string newsText { get; set; } /// /// 开始时间 /// public DateTime startTime { get; set; } /// /// 播放策略,1即时播放;2定时播放 /// public long? tactics { get; set; } } }