This commit is contained in:
2025-09-10 11:15:18 +08:00
parent f830789f4c
commit d6006094d9
12 changed files with 71 additions and 29 deletions

View File

@@ -0,0 +1,13 @@
using Cysharp.Threading.Tasks;
namespace Stary.Evo.TableTextConversion
{
public interface ITableDataCore
{
string TableName { get; }
bool IsLoad { get; set; }
UniTask LoadData();
}
}