[trim] fully-unreachable files deleted: 3 [trim] files edited: 21, files deleted: 0, nodes removed: 38 [type-trim] files edited: 3, types removed: 3 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
15 lines
258 B
C#
15 lines
258 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Wizard;
|
|
|
|
public class StoryAISettingDataSet
|
|
{
|
|
private List<StoryAISettingData> _dataTable;
|
|
|
|
public StoryAISettingDataSet()
|
|
{
|
|
_dataTable = new List<StoryAISettingData>();
|
|
}
|
|
}
|