11 lines
196 B
C#
11 lines
196 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Simulator.Data
|
|
{
|
|
[Serializable]
|
|
public class SinkDataClass:ComponentDataBase
|
|
{
|
|
public List<InOutItem> inputs;
|
|
}
|
|
} |