24 lines
475 B
C#
24 lines
475 B
C#
|
|
using System;
|
||
|
|
using Sirenix.OdinInspector;
|
||
|
|
|
||
|
|
namespace Stary.Evo.TableTextConversion
|
||
|
|
{
|
||
|
|
[Serializable]
|
||
|
|
public class VideoEntity
|
||
|
|
{
|
||
|
|
// 序号
|
||
|
|
[GUIColor(0, 1, 0)] public int index;
|
||
|
|
|
||
|
|
// 名称
|
||
|
|
public string vidid;
|
||
|
|
|
||
|
|
// 名称描述
|
||
|
|
public string filename;
|
||
|
|
public string vidtype;
|
||
|
|
|
||
|
|
public string location;
|
||
|
|
public float time;
|
||
|
|
public bool subtitle;
|
||
|
|
public string videoframeName;
|
||
|
|
}
|
||
|
|
}
|