Files

15 lines
323 B
C#
Raw Permalink Normal View History

2025-04-21 11:11:02 +08:00
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; }
2025-11-12 14:22:04 +08:00
public List<VideoEntity> infos;
2025-04-21 11:11:02 +08:00
}
}