15 lines
323 B
C#
15 lines
323 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Sirenix.OdinInspector;
|
|
using UnityEngine;
|
|
|
|
namespace Stary.Evo.TableTextConversion
|
|
{
|
|
public class VideoTableData : ScriptableObject, ITableData
|
|
{
|
|
public string TableName { get; }
|
|
public List<VideoEntity> infos;
|
|
|
|
}
|
|
} |