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