2025-10-16 10:24:29 +09:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Simulator.Data
|
|
|
|
|
{
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class SinkDataClass:ComponentDataBase
|
|
|
|
|
{
|
2026-02-03 11:40:26 +09:00
|
|
|
public List<InOutItem> inputs;
|
2025-10-16 10:24:29 +09:00
|
|
|
}
|
|
|
|
|
}
|