mirror of
https://gitea.tendokyu.moe/beerpsi/sinmai-mods.git
synced 2024-11-23 23:31:02 +01:00
9 lines
116 B
C#
9 lines
116 B
C#
using System;
|
|
|
|
namespace LooseDBTables;
|
|
|
|
[Serializable]
|
|
public class Table<T>
|
|
{
|
|
public T[] records;
|
|
} |