You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
755 B
39 lines
755 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PCScreenSavers.Model
|
|
{
|
|
public class SubTitle
|
|
{
|
|
|
|
/// <summary>
|
|
/// 字幕内容
|
|
/// </summary>
|
|
public string text { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开始时间
|
|
/// </summary>
|
|
public string beginTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束时间
|
|
/// </summary>
|
|
public string endTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 位置
|
|
/// </summary>
|
|
public string location { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 编码
|
|
/// </summary>
|
|
public string code { get; set; }
|
|
|
|
}
|
|
}
|
|
|